{
return newInstance(target, NO_ARGS_CLASS, NO_ARGS, makeAccessible);
}
catch (InvocationTargetException e)
{
throw new OJBRuntimeException("Unexpected exception while instantiate class '"
+ target + "' with default constructor", e);
}
catch (NoSuchMethodException e)
{
throw new OJBRuntimeException("Unexpected exception while instantiate class '"
+ target + "' with default constructor", e);
}
}
else
{