
ameba.http.session.SessionExcption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ameba-session Show documentation
Show all versions of ameba-session Show documentation
A useful Java framework session!
package ameba.http.session;
import ameba.exception.AmebaException;
/**
* @author icode
*/
public class SessionExcption extends AmebaException {
public SessionExcption() {
}
public SessionExcption(Throwable cause) {
super(cause);
}
public SessionExcption(String message) {
super(message);
}
public SessionExcption(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy