📄 missingmodelexception.cs
字号:
/*
* Created by SharpDevelop.
* User: Forstmeier Peter
* Date: 03.02.2006
* Time: 13:57
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Runtime.Serialization;
/// <summary>
/// Description of MissingModelException.
/// </summary>
namespace SharpReportCore{
[Serializable()]
public class MissingModelException: System.Exception
{
public MissingModelException():base(){
}
public MissingModelException(string errorMessage) :base (errorMessage){
}
public MissingModelException(string errorMessage,
Exception exception):base (errorMessage,exception){
}
protected MissingModelException(SerializationInfo info,
StreamingContext context) : base(info, context){
// Implement type-specific serialization constructor logic.
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -