jsqlarithmeticexception.cs

来自「Perst开源实时数据库」· CS 代码 · 共 22 行

CS
22
字号
//-< JSQLArithmeticException.java >----------------------------------*--------*
// JSQL                       Version 1.04       (c) 1999  GARRET    *     ?  *
// (Java SQL)                                                        *   /\|  *
//                                                                   *  /  \  *
//                          Created:     10-Dec-2002  K.A. Knizhnik  * / [] \ *
//                          Last update: 10-Dec-2002  K.A. Knizhnik  * GARRET *
//-------------------------------------------------------------------*--------*
// Exception thown in case of incorect operands for integer operations
//-------------------------------------------------------------------*--------*
namespace Perst
{
    /// <summary> Exception thown in case of incorect operands for integer operations
    /// </summary>
    public class JSQLArithmeticException:JSQLRuntimeException
    {
        /// <summary> Constructor of exception
        /// </summary>
        public JSQLArithmeticException(string msg):base(msg, null, null)
        {
        }
    }
}

⌨️ 快捷键说明

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