13 lines
303 B
C#
13 lines
303 B
C#
using System;
|
|
|
|
namespace SharedLibraryCore.Exceptions
|
|
{
|
|
public class ConfigurationException : Exception
|
|
{
|
|
public string[] Errors { get; set; }
|
|
public string ConfigurationFileName { get; set; }
|
|
|
|
public ConfigurationException(string message) : base(message) { }
|
|
}
|
|
}
|