mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 20:29:20 +00:00
15 lines
265 B
Java
15 lines
265 B
Java
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);
|
|
}
|
|
}
|