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
Mostrar archivo Open project: OpenDDRdotORG/OpenDDR-CSharp

Public Properties

Property Type Description
CANNOT_PROCEED int
ILLEGAL_ARGUMENT int

Public Methods

Method Description
GetMessage ( ) : String
SystemException ( ) : System
SystemException ( int code, Exception ex ) : System
SystemException ( int code, String message ) : System

Method Details

GetMessage() public method

public GetMessage ( ) : String
return String

SystemException() public method

public SystemException ( ) : System
return System

SystemException() public method

public SystemException ( int code, Exception ex ) : System
code int
ex System.Exception
return System

SystemException() public method

public SystemException ( int code, String message ) : System
code int
message String
return 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
return 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
return int