| Allegro CL version 9.0 Unrevised from 8.2 to 9.0. 8.2 version |
This condition, a subclass of the file-error
condition, is signaled when an attempt is made to load a file that
does not exist, when the :if-does-not-exist
keyword
argument to load is
true, which is the default. (Trying to open a file that does not exist
but is expected to with open
does not signal this condition; it signals
file-error
.)
(load "nosuchfile.cl") Error: "nosuchfile.cl" does not exist, cannot load [condition type: file-does-not-exist-error] ;; But (load "nosuchfile.cl" :if-does-not-exist nil) RETURNS nil
Copyright (c) 1998-2019, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.2 page.
Created 2012.5.30.
| Allegro CL version 9.0 Unrevised from 8.2 to 9.0. 8.2 version |