Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public class BadConfigurationException : Exception
  2. {
  3. public string ConfigurationFilePath { get; }
  4.  
  5. public BadConfigurationException(string configurationFilePath, Exception innerException)
  6. : base($"Error deserializing configuration file at {configurationFilePath}", innerException)
  7. {
  8. this.ConfigurationFilePath = configurationFilePath;
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement