Package org.openxri.exceptions

Examples of org.openxri.exceptions.StoreNotFoundException


    log.trace("getSubSegmentAuthority()");

    // check subsegment

    if (subSegment == null) throw new NullPointerException();
    if (! (subSegment instanceof DbSubSegment)) throw new StoreNotFoundException("Subsegment is not from this store.");

    // start database session

    Session session = this.getSessionFactory().getCurrentSession();
View Full Code Here

TOP

Related Classes of org.openxri.exceptions.StoreNotFoundException

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.