Show / Hide Table of Contents

Class AbortRequestedException

Exception thrown when the current operation should be aborted.

Inheritance
object
Exception
AbortRequestedException
Implements
ISerializable
Inherited Members
Exception.GetBaseException()
Exception.GetType()
Exception.ToString()
Exception.Data
Exception.HelpLink
Exception.HResult
Exception.InnerException
Exception.Message
Exception.Source
Exception.StackTrace
Exception.TargetSite
Exception.SerializeObjectState
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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.

Implements

ISerializable
In this article
Back to top Generated by DocFX