2020-01-17 17:31:53 -06:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace SharedLibraryCore.Exceptions
|
|
|
|
|
{
|
|
|
|
|
public class ConfigurationException : Exception
|
|
|
|
|
{
|
|
|
|
|
public string[] Errors { get; set; }
|
2020-01-31 20:15:07 -06:00
|
|
|
|
public string ConfigurationFileName { get; set; }
|
2020-01-17 17:31:53 -06:00
|
|
|
|
|
|
|
|
|
public ConfigurationException(string message) : base(message) { }
|
|
|
|
|
}
|
|
|
|
|
}
|