Package org.jboss.dna.graph.session

Examples of org.jboss.dna.graph.session.InvalidStateException


    /**
     * @throws InvalidStateException if session is not active
     */
    void checkSession() throws InvalidStateException {
        if (!this.session.isLive()) {
            throw new InvalidStateException(JcrI18n.sessionIsNotActive.text(this.session.sessionId()));
        }
    }
View Full Code Here

TOP

Related Classes of org.jboss.dna.graph.session.InvalidStateException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.