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) { } } }