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


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

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