13 lines
271 B
Plaintext
13 lines
271 B
Plaintext
|
using System;
|
||
|
|
||
|
namespace AniNIX.TheRaven {
|
||
|
public class RavenTimedOutException : System.Exception {
|
||
|
|
||
|
/// <summary>
|
||
|
/// Create a new RavenTimedOutException to identify this event
|
||
|
/// </summary>
|
||
|
public RavenTimedOutException(String message) : base(message) { }
|
||
|
|
||
|
}
|
||
|
}
|