Class SchedulerRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.redwood.scheduler.infrastructure.exception.SchedulerRuntimeException
-
- All Implemented Interfaces:
ExceptionData
,Serializable
- Direct Known Subclasses:
SchedulerAPIRuntimeException
public abstract class SchedulerRuntimeException extends RuntimeException implements ExceptionData, Serializable
Base exception for all non-Runtime Scheduler exceptions.- See Also:
- Serialized Form
-
-
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
getLocalizedMessage()
String
getLocalizedMessage(Locale locale)
String
getMessage()
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.String
toString()
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Method Detail
-
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.
-
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.
-
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
-
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
-
getLocalizedMessage
public String getLocalizedMessage()
- Overrides:
getLocalizedMessage
in classThrowable
-
getMessage
public String getMessage()
- Overrides:
getMessage
in classThrowable
-
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.
-
getErrorCode
public 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-"
-
-