SweetLib/SweetLib.Old/Classes/Exception/RegistryStorerException.cs

22 lines
640 B
C#
Raw Normal View History

2017-04-16 18:07:30 +02:00
using SweetLib.Classes.Storer;
namespace SweetLib.Classes.Exception
{
2017-04-16 18:07:30 +02:00
/// <summary>
/// Exception thrown by <see cref="RegistryStorer"/>.
/// </summary>
public class RegistryStorerException : System.Exception
{
2017-04-16 18:07:30 +02:00
/// <summary>
/// Creates a new <see cref="RegistryStorerException"/>.
/// </summary>
public RegistryStorerException(){}
2017-04-16 18:07:30 +02:00
/// <summary>
/// Creates a new <see cref="RegistryStorerException"/>.
/// </summary>
/// <param name="message">Exception message.</param>
public RegistryStorerException(string message):base(message) {}
}
}