source: trunk/org/expeditee/simple/IncorrectParametreCountException.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: 285 bytes
Line 
1package org.expeditee.simple;
2
3public class IncorrectParametreCountException extends RuntimeException {
4 static final long serialVersionUID = -7034897190745766939L;
5
6 public IncorrectParametreCountException(int paramCount) {
7 super("Expected exactly " + paramCount + " params");
8 }
9}
Note: See TracBrowser for help on using the repository browser.