summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/exceptions/MissingVersionException.java
blob: 62032b6fdec4ce10d19894f7cf10e20fc73aefb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
	}
}