* @param actionName the name of the action that attempted to perform
* @param t the error that occurred
* @return an appropriate error result
*/
protected WOActionResults performActionNamedWithError(String actionName, Throwable t) {
WOActionResults results = null;
Throwable meaningfulThrowble = ERXExceptionUtilities.getMeaningfulThrowable(t);
boolean isStrictMode = ERXProperties.booleanForKeyWithDefault("ERXRest.strictMode", true);
if (meaningfulThrowble instanceof ObjectNotAvailableException || meaningfulThrowble instanceof FileNotFoundException || meaningfulThrowble instanceof NoSuchElementException) {
results = errorResponse(meaningfulThrowble, ERXHttpStatusCodes.NOT_FOUND);
}