JobFrameworkException class | QSYS API Reference Guide
Estimated reading time: 2 minutes
Defined the core behavior of exceptions thrown by Monarch Base and provides a base for derived exceptions.
Namespace: ASNA.QSys.Runtime.JobSupport Assembly: ASNA.QSys.Runtime.dll
Inheritance: Object –> Exception
Constructors
Name | Description |
---|---|
JobFrameworkException() | Initializes a new instance of the JobFrameworkException class. |
JobFrameworkException(Object[]) | Initializes a new instance of the JobFrameworkException class with values for placeholders in the error message. |
JobFrameworkException(Object[], Object[]) | Initializes a new instance of the JobFrameworkException class with values for placeholders in the error and cause messages. |
JobFrameworkException(Object[], Object[], Object[], Int32) | Initializes a new instance of the JobFrameworkException class with values for placeholders in the error, cause and recovery messages. |
JobFrameworkException()
Initializes a new instance of the JobFrameworkException class.
JobFrameworkException()
JobFrameworkException(Object[])
Initializes a new instance of the JobFrameworkException class with values for placeholders in the error message.
JobFrameworkException(Object[])
Parameters
Type | Parameter name | Description |
---|---|---|
Object[] | errorRepl | An array with the values for the error message placeholders. |
JobFrameworkException(Object[], Object[])
Initializes a new instance of the JobFrameworkException class with values for placeholders in the error and cause messages.
JobFrameworkException(Object[], Object[])
Parameters
Type | Parameter name | Description |
---|---|---|
Object[] | errorRepl | An array with the values for the error message placeholders. |
Object[] | causeRepl | An array with the values for the cause message placeholders. |
JobFrameworkException(Object[], Object[], Object[], Int32)
Initializes a new instance of the JobFrameworkException class with values for placeholders in the error, cause and recovery messages.
JobFrameworkException(Object[], Object[], Object[], Int32)
Parameters
Type | Parameter name | Description |
---|---|---|
Object[] | errorRepl | An array with the values for the error message placeholders. |
Object[] | causeRepl | An array with the values for the cause message placeholders. |
Object[] | recoveryRepl | An array with the values for the recover message placeholders. |
Int32 | priority | The priority of the exception in the job log. Defaults to 30. |
Properties
Type | Name | Description |
---|---|---|
String | Message | Gets the processed error message of the exception. |