1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.earth2me.essentials.signs; public class SignException extends Exception { public SignException(final String message) { super(message); } public SignException(final String message, final Throwable throwable) { super(message, throwable); } }