SerializationException Constructor
SerializationException()
Initializes a new instance of the SerializationException class.
Declaration
public SerializationException()
SerializationException(String)
Initializes a new instance of the SerializationException class with a specified error message.
Declaration
public SerializationException(string message)
Parameters
String | message | The message that describes the error. |
SerializationException(Exception)
Initializes a new instance of the SerializationException class with a reference to the inner exception that is the cause of this exception.
Declaration
public SerializationException(Exception innerException)
Parameters
Exception | innerException | The exception that is the cause of the current exception, or a null reference if no inner exception is specified. |
SerializationException(String, Exception)
Initializes a new instance of the SerializationException class with a specified error message and a reference to the inner exception that is the cause of this exception.
Declaration
public SerializationException(string message, Exception innerException)
Parameters
String | message | The message that describes the error. |
Exception | innerException | The exception that is the cause of the current exception, or a null reference if no inner exception is specified. |