From 21db48520acfd6e6ac175aa5df12e50c6be2c767 Mon Sep 17 00:00:00 2001 From: bjculkin Date: Fri, 31 Mar 2017 08:49:17 -0400 Subject: Move FDS to new project --- .../main/java/bjc/utils/cli/fds/FDSException.java | 32 ---------------------- 1 file changed, 32 deletions(-) delete mode 100644 BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSException.java (limited to 'BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSException.java') 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); - } -} -- cgit v1.2.3