DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T V

⟦c91231090⟧ TextFile

    Length: 4020 (0xfb4)
    Types: TextFile
    Names: »V«

Derivation

└─⟦afbc8121e⟧ Bits:30000532 8mm tape, Rational 1000, MC68020_OS2000 7_2_2
    └─ ⟦77aa8350c⟧ »DATA« 
        └─⟦f794ecd1d⟧ 
            └─⟦4c85d69e2⟧ 
                └─⟦this⟧ 

TextFile

--    The use of this system is subject to the software license terms and
--    conditions agreed upon between Rational and the Customer.
--
--                Copyright 1988 by Rational.
--
--                          RESTRICTED RIGHTS LEGEND
--
--    Use, duplication, or disclosure by the Government is subject to
--    restrictions as set forth in subdivision (b)(3)(ii) of the Rights in
--    Technical Data and Computer Software clause at 52.227-7013.
--
--
--                Rational
--                3320 Scott Boulevard
--                Santa Clara, California 95054-3197
--
--   PROPRIETARY AND CONFIDENTIAL INFORMATION OF RATIONAL;
--   USE OR COPYING WITHOUT EXPRESS WRITTEN AUTHORIZATION
--   IS STRICTLY PROHIBITED.  THIS MATERIAL IS PROTECTED AS
--   AN UNPUBLISHED WORK UNDER THE U.S. COPYRIGHT ACT OF
--   1976.  CREATED 1988.  ALL RIGHTS RESERVED.
--
--

with Io_Exceptions;

package Io_Exception_Flavors is

    Already_Open_Error : exception renames Io_Exceptions.Status_Error;
    Not_Open_Error     : exception renames Io_Exceptions.Status_Error;

    Illegal_Operation_On_Infile  : exception renames Io_Exceptions.Mode_Error;
    Illegal_Operation_On_Outfile : exception renames Io_Exceptions.Mode_Error;

    Illformed_Name_Error        : exception renames Io_Exceptions.Name_Error;
    Nonexistent_Directory_Error : exception renames Io_Exceptions.Name_Error;
    Nonexistent_Object_Error    : exception renames Io_Exceptions.Name_Error;
    Nonexistent_Version_Error   : exception renames Io_Exceptions.Name_Error;
    Ambiguous_Name_Error        : exception renames Io_Exceptions.Name_Error;

    Access_Error           : exception renames Io_Exceptions.Use_Error;
    Check_Out_Error        : exception renames Io_Exceptions.Use_Error;
    Class_Error            : exception renames Io_Exceptions.Use_Error;
    Frozen_Error           : exception renames Io_Exceptions.Use_Error;
    Lock_Error             : exception renames Io_Exceptions.Use_Error;
    Capacity_Error         : exception renames Io_Exceptions.
                                               Use_Error; -- output fileis full
    Line_Page_Length_Error :
       exception renames Io_Exceptions.
                         Use_Error; -- bad value for line or page length
    Reset_Error            :
       exception renames Io_Exceptions.
                         Use_Error; -- file cannot be reset or have mode changed
    Unsupported_Error      : exception renames Io_Exceptions.Use_Error;

    Page_Nonexistent_Error : exception renames Io_Exceptions.Device_Error;
    Write_To_Read_Only_Page_Error : exception
                                        renames Io_Exceptions.Device_Error;
    Illegal_Reference_Error : exception renames Io_Exceptions.Device_Error;
    Illegal_Heap_Access_Error : exception renames Io_Exceptions.Device_Error;
    Device_Data_Error : exception renames Io_Exceptions.
                                          Device_Error; -- parity or some-such

    Input_Syntax_Error :
       exception renames Io_Exceptions.
                         Data_Error;  -- input value has incorrect syntax
    Input_Value_Error  : exception
                             renames Io_Exceptions.
                                     Data_Error;  -- input value out of range
    Output_Value_Error :
       exception renames Io_Exceptions.
                         Data_Error;  -- attempt to write value not in type
    Output_Type_Error  :
       exception renames Io_Exceptions.
                         Data_Error; -- output value is an unsafe type

    Column_Error : exception
                       renames Io_Exceptions.
                               Layout_Error; -- column exceeds line/page length
    Illegal_Position_Error :
       exception renames Io_Exceptions.
                         Layout_Error;  -- position parameter is illegal
    Item_Length_Error :
       exception renames Io_Exceptions.
                         Layout_Error;  -- item length is too big or small

end Io_Exception_Flavors;