18 lines
412 B
Plaintext
18 lines
412 B
Plaintext
|
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) { }
|
||
|
|
||
|
}
|
||
|
}
|