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

17
ExitedException.csharp Normal file
View File

@@ -0,0 +1,17 @@
using System;
namespace AniNIX.TheRaven {
public class RavenExitedException : System.Exception {
/// <summary>
/// Create a new RavenTimedOutException to identify this event
/// </summary>
public RavenExitedException(String message) : base(message) { }
/// <summary>
/// Create a new RavenTimedOutException to identify this event
/// </summary>
public RavenExitedException() : base(null) { }
}
}