summaryrefslogtreecommitdiffstats
path: root/EssentialsSigns/src/net/ess3/signs/SignException.java
blob: 7ca73e4e556865740ad69d9d4e7d9cb8565f2e34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package net.ess3.signs;


public class SignException extends Exception
{
	public SignException(final String message)
	{
		super(message);
	}

	public SignException(final String message, final Throwable throwable)
	{
		super(message, throwable);
	}
}