ChronosException.cs 372 B

1234567891011121314
  1. using System;
  2. namespace Chronos
  3. {
  4. /// <summary>
  5. /// An exception thrown by the Chronos plugin.
  6. /// </summary>
  7. public class ChronosException : Exception
  8. {
  9. public ChronosException() : base() { }
  10. public ChronosException(string message) : base(message) { }
  11. public ChronosException(string message, Exception innerException) : base(message, innerException) { }
  12. }
  13. }