Class BaseException
The BaseException class is the base class for all exceptions within the PC SDK.
Inheritance
object
BaseException
Inherited Members
Namespace: ABB.Robotics
Assembly: ABB.Robotics.Controllers.PC.dll
Syntax
public abstract class BaseException : Exception, ISerializable, _Exception
Constructors
View SourceBaseException()
Overloaded constructor.
Declaration
protected BaseException()
BaseException(SerializationInfo, StreamingContext)
Deserialization constructor.
Declaration
protected BaseException(SerializationInfo info, StreamingContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| SerializationInfo | info | See .NET documentation. |
| StreamingContext | context | See .NET documentation. |
BaseException(string)
Overloaded constructor.
Declaration
protected BaseException(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message of the exception. |
BaseException(string, Exception)
Overloaded constructor.
Declaration
protected BaseException(string message, Exception exception)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message of the exception. |
| Exception | exception | Inner exception. |
Properties
View SourceExtendedErrorInformation
Gets/Sets the extended error information.
Declaration
[Obsolete("No longer supported")]
public virtual string ExtendedErrorInformation { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Remarks
Obsolete.
Methods
View SourceGetObjectData(SerializationInfo, StreamingContext)
Implements ISerializable interface.
Declaration
public override void GetObjectData(SerializationInfo info, StreamingContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| SerializationInfo | info | See .NET documentation. |
| StreamingContext | context | See .NET documentation. |