summaryrefslogtreecommitdiff
path: root/src/main/java/exceptions/VSNegativeNumberException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/exceptions/VSNegativeNumberException.java')
-rw-r--r--src/main/java/exceptions/VSNegativeNumberException.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/java/exceptions/VSNegativeNumberException.java b/src/main/java/exceptions/VSNegativeNumberException.java
new file mode 100644
index 0000000..edf2049
--- /dev/null
+++ b/src/main/java/exceptions/VSNegativeNumberException.java
@@ -0,0 +1,12 @@
+package exceptions;
+
+/**
+ * The Interface VSNegativeNumberException, this exception is thrown if
+ * a negative number has returned if a positive number has been expected.
+ *
+ * @author Paul C. Buetow
+ */
+public class VSNegativeNumberException extends Exception {
+ /** The serial version uid */
+ private static final long serialVersionUID = 1L;
+}