summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/api/InvalidNameException.java
blob: 496fd5846d0bdbc3e26c55f577e729ce8d343170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package net.ess3.api;


public class InvalidNameException extends Exception
{
	/**
	 * Allow serialization of the InvalidNameException exception
	 */
	private static final long serialVersionUID = 1485321420293663139L;

	/**
	 *
	 * @param thrwbl
	 */
	public InvalidNameException(Throwable thrwbl)
	{
		super(thrwbl);
	}
}