- java.lang.Object
- 
- java.lang.Enum<FullAjaxExceptionHandler.LogReason>
- 
- org.omnifaces.exceptionhandler.FullAjaxExceptionHandler.LogReason
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<FullAjaxExceptionHandler.LogReason>
 - Enclosing class:
- FullAjaxExceptionHandler
 
 protected static enum FullAjaxExceptionHandler.LogReason extends Enum<FullAjaxExceptionHandler.LogReason> - Since:
- 2.4
- Author:
- Bauke Scholtz
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ERROR_PAGE_ERRORAnother exception occurred during rendering error page.EXCEPTION_HANDLEDAn exception occurred during processing Faces ajax request.RENDER_EXCEPTION_HANDLEDAn exception occurred during rendering Faces ajax request.RENDER_EXCEPTION_UNHANDLEDAn exception occurred during rendering Faces ajax request.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetMessage()Returns the default message associated with the log reason.static FullAjaxExceptionHandler.LogReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static FullAjaxExceptionHandler.LogReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
EXCEPTION_HANDLEDpublic static final FullAjaxExceptionHandler.LogReason EXCEPTION_HANDLED An exception occurred during processing Faces ajax request. Error page will be shown.
 - 
RENDER_EXCEPTION_HANDLEDpublic static final FullAjaxExceptionHandler.LogReason RENDER_EXCEPTION_HANDLED An exception occurred during rendering Faces ajax request. Error page will be shown.
 - 
RENDER_EXCEPTION_UNHANDLEDpublic static final FullAjaxExceptionHandler.LogReason RENDER_EXCEPTION_UNHANDLED An exception occurred during rendering Faces ajax request. Error page CANNOT be shown as response is already committed.
 - 
ERROR_PAGE_ERRORpublic static final FullAjaxExceptionHandler.LogReason ERROR_PAGE_ERROR Another exception occurred during rendering error page. A hardcoded error page will be shown.
 
- 
 - 
Method Detail- 
valuespublic static FullAjaxExceptionHandler.LogReason[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FullAjaxExceptionHandler.LogReason c : FullAjaxExceptionHandler.LogReason.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static FullAjaxExceptionHandler.LogReason valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
getMessagepublic String getMessage() Returns the default message associated with the log reason.- Returns:
- The default message associated with the log reason.
 
 
- 
 
-