{
final String error = "The method for getting the enums value specified in the annotation " + PersistEnum.class.getSimpleName() +
" is not found. Please check the name of the method and compare to the enum you are attempting to persist." +
" Containing class: " + containingClass.getSimpleName() + Constants.NEW_LINE +
" Field name: " + fieldName + Constants.NEW_LINE +
" Annotated method name: " + annotation.nameMethod() + Constants.NEW_LINE;
LOGGER.error( error, e );
throw new IllegalStateException( error, e );
}
catch( InvocationTargetException | IllegalAccessException e )
{