01: package org.mvel.sh;
02:
03: public class CommandException extends RuntimeException {
04:
05: public CommandException() {
06: super (); //To change body of overridden methods use File | Settings | File Templates.
07: }
08:
09: public CommandException(String message) {
10: super (message); //To change body of overridden methods use File | Settings | File Templates.
11: }
12:
13: public CommandException(String message, Throwable cause) {
14: super (message, cause); //To change body of overridden methods use File | Settings | File Templates.
15: }
16:
17: public CommandException(Throwable cause) {
18: super (cause); //To change body of overridden methods use File | Settings | File Templates.
19: }
20: }
|