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