| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
A subclass of stream-error
.
socket-error
inherits four slots from
stream-error
. See More on cl:stream-error in
errors.htm for a discussion of the Allegro CL
implementation of stream-error
and see Errors in
socket.htm for more information on this condition.
The four slots inherited from stream-error
are:
stream
: the stream which got the error. This is
the standard CL slot and is accessed by stream-error-stream.
action
: the action that was being attempted at
the time of the error, accessed by stream-error-action.
code
: the errno code returned from the system,
nil if none. Accessed by stream-error-code.
identifier
: symbolic identification of the
code, or nil if unknown. Accessed by stream-error-identifier.
Copyright (c) 1998-2016, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.1 page.
Created 2010.1.21.
| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |