disallowed-char ( line -- * ) (original) (raw)

disallowed-char ( line -- * )
XML parsing errors

Prev: quoteless-attr ( -- * )
Next: missing-close ( -- * )

Vocabulary
xml.errors

Class description
Describes the error where a disallowed character occurs in an XML document.

Definition

IN: xml.errors

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 ;