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