RunTimeException.cs 381 B

1234567891011121314151617181920212223
  1. using System;
  2. namespace sccdlib
  3. {
  4. public class RunTimeException : Exception
  5. {
  6. public RunTimeException ()
  7. {
  8. }
  9. public RunTimeException(string message)
  10. : base(message)
  11. {
  12. }
  13. public RunTimeException(string message, Exception inner)
  14. : base(message, inner)
  15. {
  16. }
  17. }
  18. }