0

Reformatted code.

This commit is contained in:
Logan Fick
2019-02-08 18:49:51 -05:00
parent 6dfe3195cd
commit 7ca3bc7379
34 changed files with 1214 additions and 1522 deletions

View File

@@ -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);
}
}