EqtDataException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
EqtDataException() |
Initializes a new instance of the EqtDataException class. |
EqtDataException(String) |
Initializes a new instance of the EqtDataException class by using the provided message. |
EqtDataException(SerializationInfo, StreamingContext) |
Initializes a new instance of the EqtDataException class by using the provided information and context. |
EqtDataException(String, Exception) |
Initializes a new instance of the EqtDataException class by using the provided message and the inner exception. |
EqtDataException()
Initializes a new instance of the EqtDataException class.
public:
EqtDataException();
public EqtDataException ();
Public Sub New ()
Applies to
EqtDataException(String)
Initializes a new instance of the EqtDataException class by using the provided message.
public:
EqtDataException(System::String ^ msg);
public EqtDataException (string msg);
new Microsoft.VisualStudio.TestTools.Exceptions.EqtDataException : string -> Microsoft.VisualStudio.TestTools.Exceptions.EqtDataException
Public Sub New (msg As String)
Parameters
- msg
- String
Message that describes the exception.
Applies to
EqtDataException(SerializationInfo, StreamingContext)
Initializes a new instance of the EqtDataException class by using the provided information and context.
protected:
EqtDataException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected EqtDataException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.VisualStudio.TestTools.Exceptions.EqtDataException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.VisualStudio.TestTools.Exceptions.EqtDataException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
Information about the exception.
- context
- StreamingContext
The source and the destination of the exception.
Applies to
EqtDataException(String, Exception)
Initializes a new instance of the EqtDataException class by using the provided message and the inner exception.
public:
EqtDataException(System::String ^ msg, Exception ^ inner);
public EqtDataException (string msg, Exception inner);
new Microsoft.VisualStudio.TestTools.Exceptions.EqtDataException : string * Exception -> Microsoft.VisualStudio.TestTools.Exceptions.EqtDataException
Public Sub New (msg As String, inner As Exception)
Parameters
- msg
- String
Message that describes the exception.
- inner
- Exception
Exception that caused the current exception.