catch( final IllegalAccessException iae )
{
final String message = REZ.format( "bad-ctor.error",
service.getName(),
classname );
throw new LoomException( message, iae );
}
catch( final InstantiationException ie )
{
final String message =
REZ.format( "no-instantiate.error",
service.getName(),
classname );
throw new LoomException( message, ie );
}
catch( final ClassNotFoundException cnfe )
{
final String message = REZ.format( "no-class.error",
service.getName(),
classname );
throw new LoomException( message, cnfe );
}
}