C# Class W3c.Ddr.Exceptions.SystemException

This exception, a subclass of System.Exception, Is thrown by DDR Simple API implementations when they encounter unrecoverable errors.
Inheritance: System.Exception
Afficher le fichier Open project: OpenDDRdotORG/OpenDDR-CSharp

Méthodes publiques

Свойство Type Description
CANNOT_PROCEED int
ILLEGAL_ARGUMENT int

Méthodes publiques

Méthode Description
GetMessage ( ) : String
SystemException ( ) : System
SystemException ( int code, Exception ex ) : System
SystemException ( int code, String message ) : System

Method Details

GetMessage() public méthode

public GetMessage ( ) : String
Résultat String

SystemException() public méthode

public SystemException ( ) : System
Résultat System

SystemException() public méthode

public SystemException ( int code, Exception ex ) : System
code int
ex System.Exception
Résultat System

SystemException() public méthode

public SystemException ( int code, String message ) : System
code int
message String
Résultat System

Property Details

CANNOT_PROCEED public_oe static_oe property

The implementation cannot continue with the processing of the current request due to an unexpected failure - disconnection from a database, for example.
public static int CANNOT_PROCEED
Résultat int

ILLEGAL_ARGUMENT public_oe static_oe property

A method has been passed an illegal or inappropriate argument - a null argument where it is not allowed, for example.
public static int ILLEGAL_ARGUMENT
Résultat int