?? jsqlnosuchfieldexception.cs
字號:
//-< JSQLNoSuchFieldException.java >---------------------------------*--------*
// JSQL Version 1.04 (c) 1999 GARRET * ? *
// (Java SQL) * /\| *
// * / \ *
// Created: 7-Dec-2002 K.A. Knizhnik * / [] \ *
// Last update: 9-Dec-2002 K.A. Knizhnik * GARRET *
//-------------------------------------------------------------------*--------*
// Exception thown when field is not found during runtime lookup
//-------------------------------------------------------------------*--------*
namespace Perst
{
using System;
/// <summary> Exception thown when field is not found during runtime lookup
/// </summary>
public class JSQLNoSuchFieldException:JSQLRuntimeException
{
/// <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 JSQLNoSuchFieldException(Type target, string fieldName)
:base("Dynamic lookup failed for field ", target, fieldName)
{
}
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -