s2.error.s2abstractexception.pas
来自「轉載的程序應用框架」· PAS 代码 · 共 23 行
PAS
23 行
unit S2.Error.S2AbstractException;
interface
uses
S2.Error.S2Exception;
type
S2AbstractException = class(S2Exception)
public
constructor Create(const ClassName, FunName: string);
end;
implementation
{ S2AbstractException }
constructor S2AbstractException.Create(const ClassName, FunName: string);
begin
inherited Create(ClassName, FunName, '');
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?