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

org.nakedobjects.runtime.session.SessionFactoryException Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.runtime.session;

public class SessionFactoryException extends Exception {

    private static final long serialVersionUID = 1L;

    public SessionFactoryException() {}

    public SessionFactoryException(String message) {
        super(message);
    }

    public SessionFactoryException(Throwable cause) {
        super(cause);
    }

    public SessionFactoryException(String message, Throwable cause) {
        super(message, cause);
    }

}


// Copyright (c) Naked Objects Group Ltd.




© 2015 - 2024 Weber Informatics LLC | Privacy Policy