r.searches function, fixes, SharedLibraries configuration inclusion

This commit is contained in:
DarkFeather
2016-12-04 19:55:52 -06:00
parent 1b4d0190e0
commit df636e8706
16 changed files with 97 additions and 182 deletions

View File

@@ -0,0 +1,13 @@
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) { }
}
}