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


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

	public ChargeException(final String message)
	{
		super(message);
	}

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