OSDN Git Service

Delete all lines containing "$Revision:".
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-ioexce.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT RUNTIME COMPONENTS                          --
4 --                                                                          --
5 --                     A D A . I O _ E X C E P T I O N S                    --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --                                                                          --
10 -- This specification is adapted from the Ada Reference Manual for use with --
11 -- GNAT.  In accordance with the copyright of that document, you can freely --
12 -- copy and modify this specification,  provided that if you redistribute a --
13 -- modified version,  any changes that you have made are clearly indicated. --
14 --                                                                          --
15 ------------------------------------------------------------------------------
16
17 package Ada.IO_Exceptions is
18 pragma Pure (IO_Exceptions);
19
20    Status_Error : exception;
21    Mode_Error   : exception;
22    Name_Error   : exception;
23    Use_Error    : exception;
24    Device_Error : exception;
25    End_Error    : exception;
26    Data_Error   : exception;
27    Layout_Error : exception;
28
29 end Ada.IO_Exceptions;