Handbook
Glossary
not-yes/no ( line -- * )
XML parsing errors
Prev:
nonexist-ns ( line -- * )
Next:
unclosed
Vocabulary
xml
.
errors
Class description
XML parsing error used to describe the case where standalone is set in the XML prolog to something other than
yes
or
no
. This contains one slot, text, which contains offending value.
Bad XML document for the error
<?xml version='1.0' standalone='maybe'?> <x/>
Definition
IN:
xml.errors
ERROR:
not-yes/no
line column text
;
Methods
USING:
accessors
debugger
generic
io
kernel
xml.errors
;
M:
not-yes/no
error.
dup
M\
not-yes/no
error.
(call-next-method)
"standalone must be either yes or no, not \""
write
text>>
write
"\"."
print
;