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