01: package org.objectweb.celtix.common.commands;
02:
03: import org.objectweb.celtix.common.i18n.Message;
04: import org.objectweb.celtix.common.i18n.UncheckedException;
05:
06: public class ForkedCommandException extends UncheckedException {
07:
08: private static final long serialVersionUID = 1L;
09:
10: public ForkedCommandException(Message msg) {
11: super (msg);
12: }
13:
14: public ForkedCommandException(Message msg, Throwable cause) {
15: super (msg, cause);
16: }
17:
18: public ForkedCommandException(Throwable cause) {
19: super(cause);
20: }
21: }
|