SweetLib/SweetLib.Old/Classes/Exception/RegistryStorerException.cs
2017-10-26 18:27:37 +02:00

22 lines
640 B
C#

using SweetLib.Classes.Storer;
namespace SweetLib.Classes.Exception
{
/// <summary>
/// Exception thrown by <see cref="RegistryStorer"/>.
/// </summary>
public class RegistryStorerException : System.Exception
{
/// <summary>
/// Creates a new <see cref="RegistryStorerException"/>.
/// </summary>
public RegistryStorerException(){}
/// <summary>
/// Creates a new <see cref="RegistryStorerException"/>.
/// </summary>
/// <param name="message">Exception message.</param>
public RegistryStorerException(string message):base(message) {}
}
}