C# Class Volante.DatabaseException

Exception thrown by database implementation
Inheritance: System.ApplicationException
Afficher le fichier Open project: kjk/volante

Méthodes publiques

Méthode Description
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

Method Details

DatabaseException() public méthode

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
Résultat System

DatabaseException() public méthode

public DatabaseException ( ErrorCode errorCode, Exception x ) : System
errorCode ErrorCode
x System.Exception
Résultat System

DatabaseException() public méthode

public DatabaseException ( ErrorCode errorCode, object param ) : System
errorCode ErrorCode
param object
Résultat System

DatabaseException() public méthode

public DatabaseException ( ErrorCode errorCode, object param, System x ) : System
errorCode ErrorCode
param object
x System
Résultat System