Package com.starlight.intrepid.exception

Examples of com.starlight.intrepid.exception.ObjectNotBoundException


  public Object lookup( String name ) throws ObjectNotBoundException {
    map_lock.lock();
    try {
      Object obj = proxy_map.get( name );
      if ( obj == null ) {
        throw new ObjectNotBoundException( new FormattedTextResourceKey(
          Resources.OBJECT_NOT_BOUND, name ) );
      }
      else return obj;
    }
    finally {
View Full Code Here

TOP

Related Classes of com.starlight.intrepid.exception.ObjectNotBoundException

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.