Azavea.Open.DAO.Exceptions.UnableToConstructSqlException.UnableToConstructSqlException C# (CSharp) Method

UnableToConstructSqlException() public method

Unable to construct a SQL statement.
public UnableToConstructSqlException ( 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 would have connected with.
e System.Exception Exception that was thrown by the database driver.
return System
        public UnableToConstructSqlException(string message, IConnectionDescriptor desc, Exception e)
            : base(message, desc, e)
        {
        }
UnableToConstructSqlException