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