1 | package dmg.util ; |
2 | |
3 | /** |
4 | * |
5 | * |
6 | * @author Patrick Fuhrmann |
7 | * @version 0.1, 12 Feb 2006 |
8 | * |
9 | * The CommandEvaluationException is thrown by the |
10 | * CommandInterpreter if an internal interpreter command |
11 | * returns non zero. This could e.g. be a 'eval 1 2 =='. |
12 | * |
13 | */ |
14 | public class CommandEvaluationException extends CommandException { |
15 | |
16 | static final long serialVersionUID = -5242610508169274713L; |
17 | |
18 | public CommandEvaluationException( int errorCode , String str ){ |
19 | super( errorCode , str) ; |
20 | } |
21 | |
22 | } |