Examples of DIRuntimeException


Examples of se.jbee.inject.DIRuntimeException

  @SuppressWarnings ( "unchecked" )
  private <V> Macro<? super V> macro( final Class<? extends V> type ) {
    int index = index( type );
    if ( index < 0 ) {
      throw new DIRuntimeException( "No macro for type:" + type.getCanonicalName() );
    }
    return (Macro<? super V>) macros[index];
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.