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


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

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