2020-01-17 18:31:53 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace SharedLibraryCore.Exceptions
|
|
|
|
|
{
|
|
|
|
|
public class ConfigurationException : Exception
|
|
|
|
|
{
|
2022-01-26 11:32:16 -05:00
|
|
|
|
public ConfigurationException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-17 18:31:53 -05:00
|
|
|
|
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
|
|
|
|
}
|
2022-01-26 11:32:16 -05:00
|
|
|
|
}
|