codegenerationexception.cs
来自「drools 一个开放源码的规则引擎」· CS 代码 · 共 20 行
CS
20 行
using System;
using System.Collections.Generic;
using System.Text;
namespace org.drools.semantics.dotnet
{
public class CodeGenerationException : Exception
{
public CodeGenerationException(string message)
: base(message)
{
}
public CodeGenerationException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?