Class ValidationException
The exception that is thrown when entity validation routine found an error.
Inherited Members
Namespace: Nevatech.Vsb.Repository
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public class ValidationException : Exception, _Exception, ISerializable
Constructors
ValidationException()
Initializes new exception with default error message.
Declaration
public ValidationException()
ValidationException(SerializationInfo, StreamingContext)
Initializes new instance with serialized data.
Declaration
protected ValidationException(SerializationInfo info, StreamingContext context)
Parameters
Type | Name | Description |
---|---|---|
SerializationInfo | info | See SerializationInfo. |
StreamingContext | context | See StreamingContext. |
ValidationException(String)
Initializes new exception with provided error message.
Declaration
public ValidationException(string message)
Parameters
Type | Name | Description |
---|---|---|
String | message | Message that describes the error. |
ValidationException(String, Exception)
Initializes new exception with provided error message and inner exception.
Declaration
public ValidationException(string message, Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
String | message | Message that describes the error. |
Exception | innerException | Exception which is a cause of the current exception. |
ValidationException(String, HttpStatusCode, String)
Initializes new exception with provided error message, status code, and description.
Declaration
public ValidationException(string message, HttpStatusCode statusCode, string statusDescription)
Parameters
Type | Name | Description |
---|---|---|
String | message | Message that describes the error. |
HttpStatusCode | statusCode | HTTP status code associated with this error. |
String | statusDescription | HTTP status code description (reason) associated with this error. |
ValidationException(String, HttpStatusCode, String, Exception)
Initializes new exception with provided error message, status code, description, and inner exception.
Declaration
public ValidationException(string message, HttpStatusCode statusCode, string statusDescription, Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
String | message | Message that describes the error. |
HttpStatusCode | statusCode | HTTP status code associated with this error. |
String | statusDescription | HTTP status code description (reason) associated with this error. |
Exception | innerException | Exception which is a cause of the current exception. |
Properties
StatusCode
Gets the HTTP status code associated with this error.
Declaration
public HttpStatusCode StatusCode { get; }
Property Value
Type | Description |
---|---|
HttpStatusCode |
StatusDescription
Gets the HTTP status code description (reason) associated with this error.
Declaration
public string StatusDescription { get; }
Property Value
Type | Description |
---|---|
String |
Methods
GetObjectData(SerializationInfo, StreamingContext)
Sets the SerializationInfo with information about the exception.
Declaration
public override void GetObjectData(SerializationInfo info, StreamingContext context)
Parameters
Type | Name | Description |
---|---|---|
SerializationInfo | info | See SerializationInfo. |
StreamingContext | context | See StreamingContext. |