mObjectName = name; mResult = result; mThrowable = t;
ResultType result = NOT_FOUND; if ( mThrowable == null ) { result = SUCCESS; } else { if ( mThrowable instanceof java.lang.NoSuchMethodException ) { result = NOT_FOUND; } else { result = FAILURE; } } return( result );