com.fastchar.exception.FastWebException 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;
import javax.servlet.ServletException;
public class FastWebException extends ServletException {
private static final long serialVersionUID = 6685331861357178775L;
public FastWebException(String message) {
super(message);
}
public FastWebException(Throwable rootCause) {
super(rootCause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy