Download this file
1 2 3 4 5 6 7 8
package xmltool.exceptions; public class ValidationException extends Exception { public ValidationException(String message, Throwable throwable) { super(message, throwable); } }