Essentials/Essentials/src/main/java/com/earth2me/essentials/ChargeException.java

12 lines
286 B
Java
Raw Normal View History

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