package net.sf.jasperreports.engine; public class JRException extends Exception { private static final long serialVersionUID = 10200L; public JRException(String message) { super(message); } public JRException(Throwable t) { super(t); } public JRException(String message, Throwable t) { super(message, t); } }