|        | |||||
|  | |||||
| function | new-io-exception | ||||
| Other Library Functions | 
| Library: I/O Exception Object Include: omioe.xin | Returns: Opaque | 
define io-exception function new-io-exception
This function returns a newly created "io-exception" opaque type object which has no bits set in its status.
Example:
  ; Using "new-io-exception" to reinitialize an "io-exception" object passed to
  ; a function.
  define function open-a-file (modifiable stream this-stream,
                               value stream this-file-name,
                               modifiable io-exception this-exception) as
     set this-exception to new-io-exception
     open this-stream as output-file this-file-name
                       exceptions-to this-exception
| Other Library Functions get-exception-status io-exception-text new-io-exception set-voluntary-end-exception | 
| ---- |