C# 클래스 Volante.DatabaseException

Exception thrown by database implementation
상속: System.ApplicationException
파일 보기 프로젝트 열기: kjk/volante

공개 메소드들

메소드 설명
DatabaseException ( ErrorCode errorCode ) : System

Get original exception if DatabaseException was thrown as the result of catching some other exception within database implementation. DatabaseException is used as a wrapper of other exceptions to avoid cascading propagation of throw and try/catch.

DatabaseException ( ErrorCode errorCode, Exception x ) : System
DatabaseException ( ErrorCode errorCode, object param ) : System
DatabaseException ( ErrorCode errorCode, object param, System x ) : System

메소드 상세

DatabaseException() 공개 메소드

Get original exception if DatabaseException was thrown as the result of catching some other exception within database implementation. DatabaseException is used as a wrapper of other exceptions to avoid cascading propagation of throw and try/catch.
public DatabaseException ( ErrorCode errorCode ) : System
errorCode ErrorCode
리턴 System

DatabaseException() 공개 메소드

public DatabaseException ( ErrorCode errorCode, Exception x ) : System
errorCode ErrorCode
x System.Exception
리턴 System

DatabaseException() 공개 메소드

public DatabaseException ( ErrorCode errorCode, object param ) : System
errorCode ErrorCode
param object
리턴 System

DatabaseException() 공개 메소드

public DatabaseException ( ErrorCode errorCode, object param, System x ) : System
errorCode ErrorCode
param object
x System
리턴 System