using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AutoUpdater { /// /// 自定义从Web返回的异常 /// public class PdmException : Exception { public PdmException() { } public PdmException(string message) : base(message) { } public PdmException(string message, Exception inner) : base(message, inner) { } } }