C# Class NGM.CasClient.Client.Validation.TicketValidationException

Generic exception to be thrown when ticket validation fails.
This is the .Net port of org.jasig.cas.client.validation.TicketValidationException
Inheritance: System.Exception
Mostra file Open project: NIKASoftwareDevs/Orchard

Public Methods

Method Description
TicketValidationException ( string message ) : System

Constructs an exception with the supplied message.

TicketValidationException ( string message, Exception exception ) : System

Constructs an exception with the supplied message and chained exception

TicketValidationException ( string message, string code ) : System

Constructs an exception with the supplied message.

TicketValidationException ( string message, string code, Exception exception ) : System

Constructs an exception with the supplied message and chained exception

Method Details

TicketValidationException() public method

Constructs an exception with the supplied message.
public TicketValidationException ( string message ) : System
message string the message
return System

TicketValidationException() public method

Constructs an exception with the supplied message and chained exception
public TicketValidationException ( string message, Exception exception ) : System
message string the message
exception System.Exception the original exception
return System

TicketValidationException() public method

Constructs an exception with the supplied message.
public TicketValidationException ( string message, string code ) : System
message string the message
code string the CAS service response error code
return System

TicketValidationException() public method

Constructs an exception with the supplied message and chained exception
public TicketValidationException ( string message, string code, Exception exception ) : System
message string the message
code string the CAS service response error code
exception System.Exception the original exception
return System