Share via


NullRecurrenceValueException Constructors

Definition

Initializes a new instance of the NullRecurrenceValueException class.

Overloads

NullRecurrenceValueException()

Initializes a new instance of the NullRecurrenceValueException class.

NullRecurrenceValueException(Exception)

Initializes a new instance of the NullRecurrenceValueException class using the inner exception.

NullRecurrenceValueException(String)

Initializes a new instance of the NullRecurrenceValueException class using the specified error message.

NullRecurrenceValueException(SerializationInfo, StreamingContext)

Initializes a new instance of the NullRecurrenceValueException class using the serialized data.

NullRecurrenceValueException(String, Exception)

Initializes a new instance of the NullRecurrenceValueException class by using the specified message and a reference to the inner exception that is the cause of this exception.

NullRecurrenceValueException()

Initializes a new instance of the NullRecurrenceValueException class.

public:
 NullRecurrenceValueException();
public NullRecurrenceValueException ();
Public Sub New ()

Applies to

NullRecurrenceValueException(Exception)

Initializes a new instance of the NullRecurrenceValueException class using the inner exception.

public:
 NullRecurrenceValueException(Exception ^ inner);
public NullRecurrenceValueException (Exception inner);
new Microsoft.EnterpriseManagement.Common.NullRecurrenceValueException : Exception -> Microsoft.EnterpriseManagement.Common.NullRecurrenceValueException
Public Sub New (inner As Exception)

Parameters

inner
Exception

The underlying exception that causes this exception.

Applies to

NullRecurrenceValueException(String)

Initializes a new instance of the NullRecurrenceValueException class using the specified error message.

public:
 NullRecurrenceValueException(System::String ^ message);
public NullRecurrenceValueException (string message);
new Microsoft.EnterpriseManagement.Common.NullRecurrenceValueException : string -> Microsoft.EnterpriseManagement.Common.NullRecurrenceValueException
Public Sub New (message As String)

Parameters

message
String

The error message that describes the current exception.

Applies to

NullRecurrenceValueException(SerializationInfo, StreamingContext)

Initializes a new instance of the NullRecurrenceValueException class using the serialized data.

protected:
 NullRecurrenceValueException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected NullRecurrenceValueException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.EnterpriseManagement.Common.NullRecurrenceValueException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.EnterpriseManagement.Common.NullRecurrenceValueException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

The object that holds the serialized data about the exception being thrown.

context
StreamingContext

The contextual information about the source or destination of the serialized object.

Applies to

NullRecurrenceValueException(String, Exception)

Initializes a new instance of the NullRecurrenceValueException class by using the specified message and a reference to the inner exception that is the cause of this exception.

public:
 NullRecurrenceValueException(System::String ^ message, Exception ^ inner);
public NullRecurrenceValueException (string message, Exception inner);
new Microsoft.EnterpriseManagement.Common.NullRecurrenceValueException : string * Exception -> Microsoft.EnterpriseManagement.Common.NullRecurrenceValueException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

The error message that describes the current exception.

inner
Exception

The exception that is the cause of the current exception.

Applies to