Table of Contents

Class ConverterException

Namespace
Dynamicweb.Core
Assembly
Dynamicweb.Core.dll

Represents errors that occur during conversion operations.

public sealed class ConverterException : Exception, ISerializable
Inheritance
ConverterException
Implements
Inherited Members

Constructors

ConverterException()

Initializes a new instance of the ConverterException class.

public ConverterException()

ConverterException(string)

Initializes a new instance of the ConverterException class with a specified error message.

public ConverterException(string message)

Parameters

message string

The message that describes the error.

ConverterException(string, Exception)

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

public ConverterException(string message, Exception innerException)

Parameters

message string

The message that describes the error.

innerException Exception

The exception that is the cause of the current exception.

To top