Share via


RecurrenceArgumentException Constructors

Definition

Initializes a new instance of the RecurrenceArgumentException class.

Overloads

RecurrenceArgumentException()

Initializes a new instance of the RecurrenceArgumentException class.

RecurrenceArgumentException(Exception)

Initializes a new instance of the RecurrenceArgumentException class using a reference to the inner exception that is the cause of this exception.

RecurrenceArgumentException(String)

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

RecurrenceArgumentException(SerializationInfo, StreamingContext)

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

RecurrenceArgumentException(String, Exception)

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

RecurrenceArgumentException()

Initializes a new instance of the RecurrenceArgumentException class.

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

Applies to

RecurrenceArgumentException(Exception)

Initializes a new instance of the RecurrenceArgumentException class using a reference to the inner exception that is the cause of this exception.

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

Parameters

inner
Exception

The exception that is the cause of the current exception.

Applies to

RecurrenceArgumentException(String)

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

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

Parameters

message
String

The error message that states the current exception.

Applies to

RecurrenceArgumentException(SerializationInfo, StreamingContext)

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

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

Parameters

info
SerializationInfo

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

context
StreamingContext

The StreamingContext object that contains contextual information about the source or destination.

Applies to

RecurrenceArgumentException(String, Exception)

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

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

Parameters

message
String

The error message that states the current exception.

inner
Exception

The exception that is the cause of the current exception.

Applies to