disallowed-char ( line -- * ) (original) (raw)
disallowed-char ( line -- * )
XML parsing errors
Prev: | quoteless-attr ( -- * ) |
---|---|
Next: | missing-close ( -- * ) |
Class description
Describes the error where a disallowed character occurs in an XML document.
Definition
ERROR: disallowed-char line column char ;
Methods
USING: accessors debugger generic io kernel xml.errors ;
M: disallowed-char error.
dup M\ disallowed-char error. (call-next-method)
"Disallowed character in XML document: " write char>> write1
nl ;