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
|
|
|
(*******************************************************************************
|
|
|
|
* *
|
2018-02-12 00:15:47 +00:00
|
|
|
* File: spkt_Exceptions.pas *
|
|
|
|
* Description: Exception classes of the toolbar *
|
|
|
|
* 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
|
|
|
|
|
2016-11-26 23:56:34 +00:00
|
|
|
uses
|
|
|
|
SysUtils;
|
2011-06-17 20:53:01 +00:00
|
|
|
|
2016-11-26 23:56:34 +00:00
|
|
|
type
|
|
|
|
InternalException = class(Exception);
|
|
|
|
AssignException = class(Exception);
|
|
|
|
RuntimeException = class(Exception);
|
|
|
|
ListException = class(Exception);
|
2011-06-17 20:53:01 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
end.
|