summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/api/ChargeException.java
blob: 07a3a9ce676a6191bca4770fe81384e23add147b (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);
	}
}