Files

13 lines
271 B
Plaintext
Raw Permalink Normal View History

2016-08-04 11:08:14 -05:00
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) { }
}
}