com.fastchar.exception.FastEnhancerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar Show documentation
Show all versions of fastchar Show documentation
FastChar is Web+ORM Framework in Java.
package com.fastchar.exception;
public class FastEnhancerException extends RuntimeException {
private static final long serialVersionUID = 2443853681011977165L;
public FastEnhancerException() {
super();
}
public FastEnhancerException(String message) {
super(message);
}
public FastEnhancerException(String message, Throwable cause) {
super(message, cause);
}
public FastEnhancerException(Throwable cause) {
super(cause);
}
protected FastEnhancerException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy