diff options
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); - } -} |
