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

This is the type of exception thrown by DAO methods when unable to read their config (or the values in it make no sense).
Inheritance: Azavea.Open.Common.LoggingException
Show file Open project: azavea/net-dao

Public Methods

Method Description
BadDaoConfigurationException ( string message ) : System

Creates an exception indicating the configuration was no good.

BadDaoConfigurationException ( string message, Exception innerException ) : System

Creates an exception indicating the configuration was no good.

Method Details

BadDaoConfigurationException() public method

Creates an exception indicating the configuration was no good.
public BadDaoConfigurationException ( string message ) : System
message string What was wrong with the configuration.
return System

BadDaoConfigurationException() public method

Creates an exception indicating the configuration was no good.
public BadDaoConfigurationException ( string message, Exception innerException ) : System
message string What was wrong with the configuration.
innerException System.Exception Exception that was thrown (if any, may be null).
return System