From 82951e37e10b282d9a7c89f4662990b64949c943 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Mon, 29 Feb 2016 10:41:17 -0500 Subject: General code cleanup --- .../main/java/bjc/utils/gui/FileNotChosenException.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'BJC-Utils2/src/main/java/bjc/utils/gui/FileNotChosenException.java') diff --git a/BJC-Utils2/src/main/java/bjc/utils/gui/FileNotChosenException.java b/BJC-Utils2/src/main/java/bjc/utils/gui/FileNotChosenException.java index b972596..2876b1d 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/gui/FileNotChosenException.java +++ b/BJC-Utils2/src/main/java/bjc/utils/gui/FileNotChosenException.java @@ -4,10 +4,24 @@ import java.io.IOException; /** * Represents the user failing to choose a file. + * * @author ben * */ public class FileNotChosenException extends IOException { private static final long serialVersionUID = -8753348705210831096L; + + public FileNotChosenException() { + super(); + } + /** + * Create a new exception with the given cause + * + * @param cause + * The cause of why the exception was thrown + */ + public FileNotChosenException(String cause) { + super(cause); + } } -- cgit v1.2.3