⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jsqlruntimeexception.cs

📁 Perst开源实时数据库
💻 CS
字号:
//-< JSQLRuntimeException.java >-------------------------------------*--------*
// JSQL                       Version 1.04       (c) 1999  GARRET    *     ?  *
// (Java SQL)                                                        *   /\|  *
//                                                                   *  /  \  *
//                          Created:      9-Dec-2002  K.A. Knizhnik  * / [] \ *
//                          Last update:  9-Dec-2002  K.A. Knizhnik  * GARRET *
//-------------------------------------------------------------------*--------*
// Exception thown by JSQL at runtime
//-------------------------------------------------------------------*--------*
namespace Perst
{
    using System;
	
    /// <summary> Exception thown by JSQL at runtime which should be ignored and boolean expression caused this
    /// exption should be treated as false
    /// </summary>
    public class JSQLRuntimeException:System.SystemException
    {
        /// <summary> Get class in which lookup was performed
        /// </summary>
        virtual public Type Target
        {
            get
            {
                return target;
            }
			
        }
        /// <summary> Get name of the field
        /// </summary>
        virtual public string FieldName
        {
            get
            {
                return fieldName;
            }
			
        }
        /// <summary> Constructor of exception
        /// </summary>
        /// <param name="target">class of the target object in which field was not found
        /// </param>
        /// <param name="fieldName">name of the locate field
        /// 
        /// </param>
        public JSQLRuntimeException(string message, Type target, string fieldName)
            :base(message)
        {
            this.target = target;
            this.fieldName = fieldName;
        }
		
		
		
        internal string fieldName;
        internal Type   target;
    }
}

⌨️ 快捷键说明

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