C# Class Azavea.Open.DAO.Exceptions.UnexpectedResultsException

This exception is thrown when we got something back that was incorrect, such as wrong data fields, or wrong number of results, etc.
Inheritance: ExceptionWithConnectionInfo
Datei anzeigen Open project: azavea/net-dao

Public Methods

Method Description
UnexpectedResultsException ( string message, IConnectionDescriptor desc ) : System

Results from an operation were not correct.

UnexpectedResultsException ( string message, IConnectionDescriptor desc, Exception e ) : System

Results from an operation were not correct.

Method Details

UnexpectedResultsException() public method

Results from an operation were not correct.
public UnexpectedResultsException ( string message, IConnectionDescriptor desc ) : System
message string Start of the message, if you don't want to use the default.
desc IConnectionDescriptor Connection descriptor we connected with.
return System

UnexpectedResultsException() public method

Results from an operation were not correct.
public UnexpectedResultsException ( string message, IConnectionDescriptor desc, Exception e ) : System
message string Start of the message, if you don't want to use the default.
desc IConnectionDescriptor Connection descriptor we connected with.
e System.Exception Exception that was thrown by the delegate.
return System