Class AbortRequestedException
Exception thrown when the current operation should be aborted.
Inheritance
System.Object
AbortRequestedException
Namespace: OpenText.Fusion.AdapterSdk.Api
Assembly: OpenText.Fusion.AdapterSdk.Api.dll
Syntax
public class AbortRequestedException : Exception
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 |
---|---|---|
System.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 |
---|---|---|
System.String | message | The message. |
Exception | innerException | The inner exception. |