vote up 2 vote down star

(Asked by @tomhollander on Twitter) What's the most appropriate exception to throw if a required app/web.config configuration setting is not present?

flag

2 Answers

vote up 1 vote down check

ConfigurationException is obsolete. The docs say it's been replaced by ConfigurationErrorsException, but this is designed to convey failures in the configuration system - I don't believe it's intended to show problems such as missing or malformed configuration values.

link|flag
vote up 4 vote down

System.Configuration.ConfigurationException

According to MSDN (emphasis added by me):

The ConfigurationException exception is thrown if the application attempts to read or write data to the configuration file but is unsuccessful. Some possible reasons for this can include malformed XML in the configuration file, file permission issues, and configuration properties with values that are not valid.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.