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

13 lines
287 B
Java
Raw Normal View History

package com.earth2me.essentials;
2015-04-15 04:06:16 +00:00
public class ChargeException extends Exception {
public ChargeException(final String message) {
super(message);
}
2015-04-15 04:06:16 +00:00
public ChargeException(final String message, final Throwable throwable) {
super(message, throwable);
}
}