2011-06-17 20:53:01 +00:00
|
|
|
unit spkt_Exceptions;
|
|
|
|
|
2011-06-18 16:17:03 +00:00
|
|
|
{$mode delphi}
|
|
|
|
|
2011-06-17 20:53:01 +00:00
|
|
|
(*******************************************************************************
|
|
|
|
* *
|
|
|
|
* Plik: spkt_Exceptions.pas *
|
2011-06-17 21:12:21 +00:00
|
|
|
* Opis: Klasy wyj¹tków toolbara *
|
2016-11-13 19:05:46 +00:00
|
|
|
* Copyright: (c) 2009 by Spook. *
|
|
|
|
* License: Modified LGPL (with linking exception, like Lazarus LCL) *
|
|
|
|
' See "license.txt" in this installation *
|
2011-06-17 20:53:01 +00:00
|
|
|
* *
|
|
|
|
*******************************************************************************)
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses SysUtils;
|
|
|
|
|
|
|
|
type InternalException = class(Exception);
|
|
|
|
AssignException = class(Exception);
|
|
|
|
RuntimeException = class(Exception);
|
|
|
|
ListException = class(Exception);
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
end.
|