* @return WOActionResults
*/
protected WOActionResults performUnknownAction(String actionName) throws Exception {
boolean isStrictMode = ERXProperties.booleanForKeyWithDefault("ERXRest.strictMode", true);
if (isStrictMode) {
throw new ERXNotAllowedException();
} else {
throw new FileNotFoundException("There is no action named '" + actionName + "Action' on '" + getClass().getSimpleName() + "'.");
}
}