Package se.jbee.inject

Examples of se.jbee.inject.DIRuntimeException$DependencyCycleException


  @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

Related Classes of se.jbee.inject.DIRuntimeException$DependencyCycleException

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.