1234567891011121314151617181920212223242526272829 |
- using System;
- namespace UAS_MES_NEW.PublicMethod
- {
- [Serializable]
- public class ExceptionHandler : Exception
- {
- public ExceptionHandler()
- {
- }
- public ExceptionHandler(string message) : base(message)
- {
- }
- public ExceptionHandler(string message, Exception inner) : base(message, inner)
- {
- }
- protected ExceptionHandler(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context)
- {
- }
- }
- }
|