com.googlecode.aviator.exception.StandardError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aviator Show documentation
Show all versions of aviator Show documentation
A lightweight,high performance expression evaluator for java
package com.googlecode.aviator.exception;
/**
* Standard error.
*
* @author dennis([email protected])
*
*/
public class StandardError extends Exception {
private static final long serialVersionUID = 7601099490172089234L;
public StandardError() {
super();
}
public StandardError(final String message, final Throwable cause, final boolean enableSuppression,
final boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public StandardError(final String message, final Throwable cause) {
super(message, cause);
}
public StandardError(final String message) {
super(message);
}
public StandardError(final Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy