C# Class Subtext.Scripting.Exceptions.SqlScriptExecutionException

Inheritance: System.Exception, ISerializable
Show file Open project: ayende/Subtext Class Usage Examples

Public Methods

Method Description
SqlScriptExecutionException ( ) : System

Initializes a new instance of the SqlScriptExecutionException class.

SqlScriptExecutionException ( string message ) : System

Initializes a new instance of the SqlScriptExecutionException class.

SqlScriptExecutionException ( string message, Exception innerException ) : System

Initializes a new instance of the SqlScriptExecutionException class.

SqlScriptExecutionException ( string message, System.Script script, int returnValue ) : System

Initializes a new instance of the SqlScriptExecutionException class.

SqlScriptExecutionException ( string message, System.Script script, int returnValue, Exception innerException ) : System

Initializes a new instance of the SqlScriptExecutionException class.

Private Methods

Method Description
ISerializable ( SerializationInfo info, StreamingContext context ) : void

When overridden in a derived class, sets the T:System.Runtime.Serialization.SerializationInfo with information about the exception.

SqlScriptExecutionException ( SerializationInfo info, StreamingContext context ) : System

Method Details

SqlScriptExecutionException() public method

Initializes a new instance of the SqlScriptExecutionException class.
public SqlScriptExecutionException ( ) : System
return System

SqlScriptExecutionException() public method

Initializes a new instance of the SqlScriptExecutionException class.
public SqlScriptExecutionException ( string message ) : System
message string The message.
return System

SqlScriptExecutionException() public method

Initializes a new instance of the SqlScriptExecutionException class.
public SqlScriptExecutionException ( string message, Exception innerException ) : System
message string The message.
innerException System.Exception The inner exception.
return System

SqlScriptExecutionException() public method

Initializes a new instance of the SqlScriptExecutionException class.
public SqlScriptExecutionException ( string message, System.Script script, int returnValue ) : System
message string The message.
script System.Script The script.
returnValue int The return value.
return System

SqlScriptExecutionException() public method

Initializes a new instance of the SqlScriptExecutionException class.
public SqlScriptExecutionException ( string message, System.Script script, int returnValue, Exception innerException ) : System
message string The message.
script System.Script The script.
returnValue int The return value.
innerException System.Exception The inner exception.
return System