svn: r1589

This commit is contained in:
Kathy Gray 2005-12-12 04:30:30 +00:00
parent fedbf9e0c8
commit b21e637ec3

View File

@ -1667,12 +1667,13 @@
(let ((k (if (eq? kind 'file) 'file-not-found 'directory-not-found)))
(raise-error k
(case kind
((file) (format "Required file ~a not found" (path->ext path)))
((file) (format "Required file ~a, for class or interface ~a, not found"
(string-append (path->ext path) ".java") (path->ext path)))
((dir) (format "Required directory ~a not found" (path->ext path))))
k src))
(raise-error (string->symbol (car path))
(case kind
((file) (format "Class ~a is not known" (path->ext path)))
((file) (format "Class or interface ~a is not known" (path->ext path)))
((dir) (format "Directory to search, ~a, is not known" (path->ext path))))
(string->symbol (car path))
src)))