1234567891011121314 |
- using System;
- namespace Chronos
- {
- /// <summary>
- /// An exception thrown by the Chronos plugin.
- /// </summary>
- public class ChronosException : Exception
- {
- public ChronosException() : base() { }
- public ChronosException(string message) : base(message) { }
- public ChronosException(string message, Exception innerException) : base(message, innerException) { }
- }
- }
|