s2.error.s2callexception.pas

来自「轉載的程序應用框架」· PAS 代码 · 共 22 行

PAS
22
字号
unit S2.Error.S2CallException;

interface

uses
  S2.Error.S2Exception;

type
  S2CallException = class(S2Exception)
    constructor Create(const ClassName, MasterFunName, CallFunName, ErrMsg: string);  
  end;

implementation

{ S2CallException }

constructor S2CallException.Create(const ClassName, MasterFunName, CallFunName, ErrMsg: string);
begin

end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?