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


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

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