tryagainexception.cs

来自「Gibphone is CSharp Program, it can tell 」· CS 代码 · 共 27 行

CS
27
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace GPCore.Exceptions
{
    
    [global::System.Serializable]
    public class TryAgainException : Exception
    {
        //
        // For guidelines regarding the creation of new exception types, see
        //    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconerrorraisinghandlingguidelines.asp
        // and
        //    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp07192001.asp
        //

        public TryAgainException() { }
        public TryAgainException(string message) : base(message) { }
        public TryAgainException(string message, Exception inner) : base(message, inner) { }
        protected TryAgainException(
          System.Runtime.Serialization.SerializationInfo info,
          System.Runtime.Serialization.StreamingContext context)
            : base(info, context) { }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?