Class SchedulerCustomLowLevelRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.redwood.scheduler.api.exception.SchedulerCustomLowLevelRuntimeException
-
- All Implemented Interfaces:
ExceptionData
,Serializable
public class SchedulerCustomLowLevelRuntimeException extends RuntimeException implements ExceptionData
Custom low-level runtime exception, isBestException() returns false so will not be chosen by the UI.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SchedulerCustomLowLevelRuntimeException(String message)
SchedulerCustomLowLevelRuntimeException(String message, Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
bestException()
Is this exception the best exception for the purposes of the UI? Exceptions implementing this _MUST_ make sure that they display all or more information than their causes.String
getDefaultMessageFormat()
Get the default (US English) message format.String
getErrorCode()
Get the JCS error code of this exception.Object[]
getExceptionData()
Get the data from the exception for formatting.String
getTranslation()
Get a translation for the exception.boolean
isSystemLoggable()
Should this exception be logged to the system log, or only to the trace file.boolean
skipException()
Should this exception be skipped for the purposes of showing an exception dump to the user.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
bestException
public boolean bestException()
Description copied from interface:ExceptionData
Is this exception the best exception for the purposes of the UI? Exceptions implementing this _MUST_ make sure that they display all or more information than their causes.- Specified by:
bestException
in interfaceExceptionData
- Returns:
- true if so, false otherwise.
-
getDefaultMessageFormat
public String getDefaultMessageFormat()
Description copied from interface:ExceptionData
Get the default (US English) message format.- Specified by:
getDefaultMessageFormat
in interfaceExceptionData
- Returns:
- the message format
-
getErrorCode
public final String getErrorCode()
Description copied from interface:ExceptionData
Get the JCS error code of this exception.- Specified by:
getErrorCode
in interfaceExceptionData
- Returns:
- the JCS error code, without the leading "JCS-"
-
getExceptionData
public Object[] getExceptionData()
Description copied from interface:ExceptionData
Get the data from the exception for formatting.- Specified by:
getExceptionData
in interfaceExceptionData
- Returns:
- the exception data.
-
getTranslation
public String getTranslation()
Description copied from interface:ExceptionData
Get a translation for the exception.- Specified by:
getTranslation
in interfaceExceptionData
- Returns:
- a translatable description of this exception.
-
isSystemLoggable
public boolean isSystemLoggable()
Description copied from interface:ExceptionData
Should this exception be logged to the system log, or only to the trace file.- Specified by:
isSystemLoggable
in interfaceExceptionData
- Returns:
- whether this should be logged to the system log, or only to the trace file
-
skipException
public boolean skipException()
Description copied from interface:ExceptionData
Should this exception be skipped for the purposes of showing an exception dump to the user.- Specified by:
skipException
in interfaceExceptionData
- Returns:
- true if so, false otherwise.
-
-