18 lines
380 B
Java
18 lines
380 B
Java
package net.sf.jasperreports.engine;
|
|
|
|
public class JRRuntimeException extends RuntimeException {
|
|
private static final long serialVersionUID = 10200L;
|
|
|
|
public JRRuntimeException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public JRRuntimeException(Throwable t) {
|
|
super(t);
|
|
}
|
|
|
|
public JRRuntimeException(String message, Throwable t) {
|
|
super(message, t);
|
|
}
|
|
}
|