TheRaven/AlreadyIdentifiedException....

14 lines
342 B
Plaintext

using System;
namespace AniNIX.TheRaven {
public class AlreadyIdentifiedException : System.Exception {
/// <summary>
/// Create a new AlreadyIdentifiedException to identify this event
/// </summary>
public AlreadyIdentifiedException(String message) : base(message) { }
public AlreadyIdentifiedException() : base(null) { }
}
}