C# Class BetterCms.Core.Exceptions.Mvc.ValidationException

Inheritance: CmsException
Mostra file Open project: devbridge/BetterCMS

Public Methods

Method Description
ValidationException ( ) : System

Initializes a new instance of the ValidationException class.

ValidationException ( Func resource, string message ) : System

Initializes a new instance of the ValidationException class.

ValidationException ( Func resource, string message, Exception innerException ) : System

Initializes a new instance of the ValidationException class.

Method Details

ValidationException() public method

Initializes a new instance of the ValidationException class.
public ValidationException ( ) : System
return System

ValidationException() public method

Initializes a new instance of the ValidationException class.
public ValidationException ( Func resource, string message ) : System
resource Func A function to retrieve a globalized resource associated with this exception.
message string The exception message.
return System

ValidationException() public method

Initializes a new instance of the ValidationException class.
public ValidationException ( Func resource, string message, Exception innerException ) : System
resource Func A function to retrieve a globalized resource associated with this exception.
message string The exception message.
innerException System.Exception The inner exception.
return System