PreviousUpNext

15.4.1103  src/lib/std/src/io/io-exceptions.pkg

## io-exceptions.pkg

# Compiled by:
#     src/lib/std/src/standard-core.sublib

package   io_exceptions
: (weak)  Io_Exceptions                                 # Io_Exceptions is from   src/lib/std/src/io/io-exceptions.api
{
    Buffering_Mode
        =
        NO_BUFFERING | LINE_BUFFERING | BLOCK_BUFFERING;                # "Americans will put up with anything provided it doesn't block traffic."   -- Dan Rather

    exception IO  { op:     String,
                    name:   String,
                    cause:  Exception
                  };

    exception BLOCKING_IO_NOT_SUPPORTED;
    exception RANDOM_ACCESS_IO_NOT_SUPPORTED;
    exception TERMINATED_INPUT_STREAM;
    exception CLOSED_IO_STREAM;
};


## COPYRIGHT (c) 1995 AT&T Bell Laboratories.
## Subsequent changes by Jeff Prothero Copyright (c) 2010-2015,
## released per terms of SMLNJ-COPYRIGHT.


Comments and suggestions to: bugs@mythryl.org

PreviousUpNext