You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5346 8e941d3f-bd1b-0410-a28a-d453659cc2b4
27 lines
985 B
ObjectPascal
27 lines
985 B
ObjectPascal
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.
|