TF-EssentialsX/Essentials/src/com/earth2me/essentials/ChargeException.java

16 lines
265 B
Java
Raw Normal View History

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);
}
}