All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ameba.http.session.SessionExcption Maven / Gradle / Ivy

There is a newer version: 0.1.10
Show newest version
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