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); } }