summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/api/ChargeException.java
blob: 3a02d5f49f554b1cfe247e96bc2665c9e384593a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package net.ess3.api;


public class ChargeException extends Exception
{
	/**
	 * Allow for serialization of the ChargeException class
	 */
	private static final long serialVersionUID = 200058474023860487L;

	/**
	 *
	 * @param message
	 */
	public ChargeException(final String message)
	{
		super(message);
	}

	/**
	 *
	 * @param message
	 * @param throwable
	 */
	public ChargeException(final String message, final Throwable throwable)
	{
		super(message, throwable);
	}
}