C# 클래스 W3c.Ddr.Exceptions.SystemException

This exception, a subclass of System.Exception, Is thrown by DDR Simple API implementations when they encounter unrecoverable errors.
상속: System.Exception
파일 보기 프로젝트 열기: OpenDDRdotORG/OpenDDR-CSharp

공개 프로퍼티들

프로퍼티 타입 설명
CANNOT_PROCEED int
ILLEGAL_ARGUMENT int

공개 메소드들

메소드 설명
GetMessage ( ) : String
SystemException ( ) : System
SystemException ( int code, Exception ex ) : System
SystemException ( int code, String message ) : System

메소드 상세

GetMessage() 공개 메소드

public GetMessage ( ) : String
리턴 String

SystemException() 공개 메소드

public SystemException ( ) : System
리턴 System

SystemException() 공개 메소드

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

SystemException() 공개 메소드

public SystemException ( int code, String message ) : System
code int
message String
리턴 System

프로퍼티 상세

CANNOT_PROCEED 공개적으로 정적으로 프로퍼티

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
리턴 int

ILLEGAL_ARGUMENT 공개적으로 정적으로 프로퍼티

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
리턴 int