source: trunk/org/expeditee/simple/BelowMinParametreCountException.java@ 4

Last change on this file since 4 was 4, checked in by davidb, 16 years ago

Starting source code to Expeditee

File size: 284 bytes
Line 
1package org.expeditee.simple;
2
3public class BelowMinParametreCountException extends RuntimeException {
4 static final long serialVersionUID = -7034897190745766939L;
5
6 public BelowMinParametreCountException(int paramCount) {
7 super("Expected at least " + paramCount + " params");
8 }
9}
Note: See TracBrowser for help on using the repository browser.