summaryrefslogtreecommitdiff
path: root/prototypes/miglayout/gui_mig_exceptions.pas
blob: 259a8492674bf94f9690e80ae0729adc1c007b4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
unit gui_mig_exceptions;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils; 
  
type

  EIllegalArgument = class(Exception);


implementation

end.