C# Class Upscaledb.DatabaseException

Inheritance: System.Exception
Afficher le fichier Open project: cruppstahl/upscaledb Class Usage Examples

Méthodes publiques

Méthode Description
DatabaseException ( ) : System

Empty Constructor

DatabaseException ( int error ) : System

Constructor accepting an error code

DatabaseException ( string message ) : System

Constructor accepting an error message

DatabaseException ( string message, Exception innerException ) : System

Constructor provided for standard compliancy

Méthodes protégées

Méthode Description
DatabaseException ( SerializationInfo info, StreamingContext context ) : System

Constructor accepting Serialization info

Method Details

DatabaseException() public méthode

Empty Constructor
public DatabaseException ( ) : System
Résultat System

DatabaseException() protected méthode

Constructor accepting Serialization info
protected DatabaseException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The serialization info
context System.Runtime.Serialization.StreamingContext The serialization context
Résultat System

DatabaseException() public méthode

Constructor accepting an error code
public DatabaseException ( int error ) : System
error int A upscaledb error code
Résultat System

DatabaseException() public méthode

Constructor accepting an error message
public DatabaseException ( string message ) : System
message string An error message
Résultat System

DatabaseException() public méthode

Constructor provided for standard compliancy
public DatabaseException ( string message, Exception innerException ) : System
message string An error message
innerException System.Exception An inner exception
Résultat System