#region using System; #endregion namespace CSFrameworkV5.Common { /// /// 用户自定义异常 /// public class CustomException : Exception { public CustomException(string message) : base(message) { } } }