summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/exceptions/MissingVersionException.java
diff options
context:
space:
mode:
authorLogan Fick <logaldeveloper@protonmail.com>2019-02-08 18:49:51 -0500
committerLogan Fick <logaldeveloper@protonmail.com>2019-02-08 18:49:51 -0500
commit7ca3bc7379215b7726480ebb14c3dd07fe521f62 (patch)
tree70abc6560aa910a33674a99e2532ba4c52e606a9 /src/main/java/com/redstoner/exceptions/MissingVersionException.java
parent6dfe3195cd6d939997deb8e89cce220ba625b8ac (diff)
Reformatted code.
Diffstat (limited to 'src/main/java/com/redstoner/exceptions/MissingVersionException.java')
-rw-r--r--src/main/java/com/redstoner/exceptions/MissingVersionException.java23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/main/java/com/redstoner/exceptions/MissingVersionException.java b/src/main/java/com/redstoner/exceptions/MissingVersionException.java
index 62032b6..3ea1f17 100644
--- a/src/main/java/com/redstoner/exceptions/MissingVersionException.java
+++ b/src/main/java/com/redstoner/exceptions/MissingVersionException.java
@@ -2,21 +2,20 @@ package com.redstoner.exceptions;
import com.redstoner.annotations.Version;
-/** To be thrown when a module is not annotated with its version. If this gets thrown, then oh boy, you're in trouble now.
- *
- * @author Pepich */
-@Version(major = 1, minor = 0, revision = 0, compatible = -1)
-public class MissingVersionException extends Exception
-{
+/**
+ * To be thrown when a module is not annotated with its version. If this gets thrown, then oh boy, you're in trouble now.
+ *
+ * @author Pepich
+ */
+@Version (major = 1, minor = 0, revision = 0, compatible = -1)
+public class MissingVersionException extends Exception {
private static final long serialVersionUID = 4940161335512222539L;
-
- public MissingVersionException()
- {
+
+ public MissingVersionException() {
super();
}
-
- public MissingVersionException(String message)
- {
+
+ public MissingVersionException(String message) {
super(message);
}
}