summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/exceptions/MissingVersionException.java
diff options
context:
space:
mode:
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);
}
}