0

Moved files to use the gradle structure

This commit is contained in:
David
2018-11-06 16:16:01 +01:00
parent 54a6cbf4c8
commit 4810dcf339
52 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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
{
private static final long serialVersionUID = 4940161335512222539L;
public MissingVersionException()
{
super();
}
public MissingVersionException(String message)
{
super(message);
}
}