📄 jsqlnullpointerexception.cs
字号:
//-< JSQLNullPointerException.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 null reference field is dereferenced
//-------------------------------------------------------------------*--------*
namespace Perst
{
using System;
/// <summary> Exception thown when null reference field is dereferenced
/// </summary>
public class JSQLNullPointerException: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 JSQLNullPointerException(Type target, string fieldName)
:base("Dereferencing null reference ", target, fieldName)
{
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -