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

ExceptionWithConnectionInfo() public method

An error occurred doing something with a database.
public ExceptionWithConnectionInfo ( string message, IConnectionDescriptor desc, Exception e ) : System
message string What happened.
desc IConnectionDescriptor The connection info will be appended to the message.
e System.Exception Inner exception that caused this one to be thrown.
return System
        public ExceptionWithConnectionInfo(string message, IConnectionDescriptor desc,
            Exception e)
            : base(message + "  Connection info: " + desc, e)
        {
        }
ExceptionWithConnectionInfo