Class ArubaException
Represents an exception inside Aruba code.
Inheritance
ArubaException
Implements
Inherited Members
Namespace: Microsoft.Internal.Studios.Aruba.Infrastructure.Exceptions
Assembly: Aruba.Infrastructure.dll
Syntax
[Serializable]
public class ArubaException : Exception, ISerializable
Constructors
View SourceArubaException()
Initializes a new instance of the ArubaException class. Loosely based on BugAnywhereException from the original BugAnywhere code.
Declaration
public ArubaException()
ArubaException(string)
Initializes a new instance of the ArubaException class.
Declaration
public ArubaException(string message)
Parameters
Type | Name | Description |
---|---|---|
string | message | The exception message. |
ArubaException(string, Exception)
Initializes a new instance of the ArubaException class.
Declaration
public ArubaException(string message, Exception inner)
Parameters
Type | Name | Description |
---|---|---|
string | message | The exception message. |
Exception | inner | The exception's inner exception. |