Class PeriodFunctionErrorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.redwood.scheduler.infrastructure.exception.SchedulerRuntimeException
-
- com.redwood.scheduler.api.exception.SchedulerAPIRuntimeException
-
- com.redwood.scheduler.api.exception.PeriodFunctionErrorException
-
- All Implemented Interfaces:
ExceptionData
,Serializable
@Generated("build/redwood/jbs/generated-exceptions/Exceptions.java.tmpl") public class PeriodFunctionErrorException extends SchedulerAPIRuntimeException
Internal error in a period function.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
PeriodFunctionErrorException(String newErrorCode, String messageFormat, Throwable cause, Object[] exceptionDataEN, Object[] exceptionData)
PeriodFunctionErrorException(Throwable cause, String periodFunction, String exception)
Internal error in a period function.PeriodFunctionErrorException(Throwable cause, String periodFunction, String exception, String values)
Internal error in a period function.
-
Method Summary
-
Methods inherited from class com.redwood.scheduler.infrastructure.exception.SchedulerRuntimeException
bestException, getDefaultMessageFormat, getErrorCode, getExceptionData, getLocalizedMessage, getLocalizedMessage, getMessage, getTranslation, isSystemLoggable, skipException, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
PeriodFunctionErrorException
protected PeriodFunctionErrorException(String newErrorCode, String messageFormat, Throwable cause, Object[] exceptionDataEN, Object[] exceptionData)
-
PeriodFunctionErrorException
public PeriodFunctionErrorException(Throwable cause, String periodFunction, String exception)
Internal error in a period function. This is equivalent to callingPeriodFunctionErrorException(cause, periodFunction, exception, "")
- Parameters:
cause
- The originating exception, null if this is the originating exceptionperiodFunction
- The name of the period function.exception
- Exception got from the period function.
-
PeriodFunctionErrorException
public PeriodFunctionErrorException(Throwable cause, String periodFunction, String exception, String values)
Internal error in a period function.- Parameters:
cause
- The originating exception, null if this is the originating exceptionperiodFunction
- The name of the period function.exception
- Exception got from the period function.values
- String representation of a list with parameter values.
-
-