WinSWException.cs 362 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace winsw
  5. {
  6. public class WinSWException : Exception
  7. {
  8. public WinSWException(String message)
  9. : base(message)
  10. { }
  11. public WinSWException(String message, Exception innerException)
  12. : base(message, innerException)
  13. { }
  14. }
  15. }