Class AbortRequestedException
Exception thrown when the current operation should be aborted.
Implements
Inherited Members
Namespace: OpenText.Fusion.AdapterSdk.Api
Assembly: OpenText.Fusion.AdapterSdk.Api.dll
Syntax
public class AbortRequestedException : Exception, ISerializable
Remarks
Job can be cancelled in the Fusion UI or it can expire if an adapter was offline.
In both cases, the AbortRequestedException can be thrown when a call to the
Agent API is made.
If this exception is encountered, the adapter should re-throw this exception. Adapter can also perform any cleanup if necessary.
Constructors
AbortRequestedException(string)
Initializes a new instance of the AbortRequestedException class.
Declaration
public AbortRequestedException(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message. |
AbortRequestedException(string, Exception)
Initializes a new instance of the AbortRequestedException class.
Declaration
public AbortRequestedException(string message, Exception innerException)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message. |
| Exception | innerException | The inner exception. |