diff options
| author | bjculkin <bjculkin@mix.wvu.edu> | 2017-03-31 08:49:17 -0400 |
|---|---|---|
| committer | bjculkin <bjculkin@mix.wvu.edu> | 2017-03-31 08:49:17 -0400 |
| commit | 21db48520acfd6e6ac175aa5df12e50c6be2c767 (patch) | |
| tree | 722a3f3b889a7d6d76ac056bdc47b66204ca657a /BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSException.java | |
| parent | daceafeeb90680116c289a7c301c42eb3e57eb97 (diff) | |
Move FDS to new project
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSException.java')
| -rw-r--r-- | BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSException.java | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSException.java b/BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSException.java deleted file mode 100644 index 7569d95..0000000 --- a/BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSException.java +++ /dev/null @@ -1,32 +0,0 @@ -package bjc.utils.cli.fds; - -/** - * Exception thrown when something goes wrong with FDS. - * - * @author bjculkin - * - */ -public class FDSException extends Exception { - /** - * Create a new FDS exception with a message and a cause. - * - * @param message - * The message for the exception. - * - * @param cause - * The cause of the exception. - */ - public FDSException(String message, Throwable cause) { - super(message, cause); - } - - /** - * Create a new FDS exception with a message. - * - * @param message - * The message for the exception. - */ - public FDSException(String message) { - super(message); - } -} |
