?? exceptionclass.pas
字號:
////////////////////////////////////////////////////////////////////////////////
//
//
// FileName : clsinherit.pas
// Creator : Shen Min
// Date : 2002-2-10
// Comment : Exception Class Demo for <<delphi after high hand>>
//
//
////////////////////////////////////////////////////////////////////////////////
unit ExceptionClass;
interface
uses SysUtils, Dialogs;
type
EFileOpenFailed = class(Exception)
public
procedure Warning; virtual; abstract;
end;
EFileNotFound = class(EFileOpenFailed)
public
procedure Warning; override;
end;
EFileFormatErr = class(EFileOpenFailed)
public
procedure Warning; override;
end;
implementation
{ EFileNotFound }
procedure EFileNotFound.Warning;
begin
ShowMessage('真是不可思議,竟然找不到文件!');
end;
{ EFileFormatErr }
procedure EFileFormatErr.Warning;
begin
ShowMessage('更不可思議的是,文件格式不對!');
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -