C# Class Mono.Data.Sqlite.SqliteException.SqliteException

Inheritance: System.Exception
Mostra file Open project: rubenv/tripod

Public Methods

Method Description
SqliteException ( ) : System

Various public constructors that just pass along to the base Exception

SqliteException ( int errorCode, string extendedInformation ) : System

Public constructor for generating a Sqlite error given the base error code

SqliteException ( string message ) : System

Various public constructors that just pass along to the base Exception

SqliteException ( string message, Exception innerException ) : System

Various public constructors that just pass along to the base Exception Passed to Exception Passed to Exception

Private Methods

Method Description
GetStockErrorMessage ( int errorCode, string errorMessage ) : string

Initializes the exception class with the Sqlite error code.

SqliteException ( SerializationInfo info, StreamingContext context ) : System

Method Details

SqliteException() public method

Various public constructors that just pass along to the base Exception
public SqliteException ( ) : System
return System

SqliteException() public method

Public constructor for generating a Sqlite error given the base error code
public SqliteException ( int errorCode, string extendedInformation ) : System
errorCode int The Sqlite error code to report
extendedInformation string Extra text to go along with the error message text
return System

SqliteException() public method

Various public constructors that just pass along to the base Exception
public SqliteException ( string message ) : System
message string Passed verbatim to Exception
return System

SqliteException() public method

Various public constructors that just pass along to the base Exception Passed to Exception Passed to Exception
public SqliteException ( string message, Exception innerException ) : System
message string
innerException System.Exception
return System