ExceptionHandler.cs 573 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. namespace UAS_MES_NEW.PublicMethod
  3. {
  4. [Serializable]
  5. public class ExceptionHandler : Exception
  6. {
  7. public ExceptionHandler()
  8. {
  9. }
  10. public ExceptionHandler(string message) : base(message)
  11. {
  12. }
  13. public ExceptionHandler(string message, Exception inner) : base(message, inner)
  14. {
  15. }
  16. protected ExceptionHandler(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context)
  17. {
  18. }
  19. }
  20. }