com.filenet.api.exception
Class ErrorLoggingLevel
- java.lang.Object
-
- com.filenet.api.exception.ErrorLoggingLevel
-
public final class ErrorLoggingLevel extends java.lang.ObjectDetermines whether an exception is to be logged. The exception is logged on the Content Engine server.- See Also:
ExceptionCode.getErrorLoggingLevel
-
-
Field Summary
Fields Modifier and Type Field and Description static ErrorLoggingLevelOptionalSpecifies that logging on the Content Engine server is not required for the exception.static ErrorLoggingLevelRequiredSpecifies that the exception is to be logged on the Content Engine server.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.StringtoString()Returns a String representation of the logging level assigned to the exception.
-
-
-
Field Detail
-
Required
public static final ErrorLoggingLevel Required
Specifies that the exception is to be logged on the Content Engine server.
-
Optional
public static final ErrorLoggingLevel Optional
Specifies that logging on the Content Engine server is not required for the exception.
-
-