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