Files
lazarus-ccr/components/spktoolbar/SpkToolbar/spkt_Exceptions.pas

27 lines
985 B
ObjectPascal
Raw Normal View History

unit spkt_Exceptions;
{$mode delphi}
(*******************************************************************************
* *
* Plik: spkt_Exceptions.pas *
* Opis: Klasy wyj¹tków toolbara *
* Copyright: (c) 2009 by Spook. *
* License: Modified LGPL (with linking exception, like Lazarus LCL) *
' See "license.txt" in this installation *
* *
*******************************************************************************)
interface
uses SysUtils;
type InternalException = class(Exception);
AssignException = class(Exception);
RuntimeException = class(Exception);
ListException = class(Exception);
implementation
end.