24.3 Signalling Errors Inside present Methods

simple-parse-error   [Error Condition]
          

The error that is signalled by simple-parse-error. This is a subclass of parse-error. [annotate]

Note: "Signalling Errors Inside present Methods" is obviously a typo. These are errors that are signalled from inside accept methods. [edit]-- Tim Moore 2002-11-20 22:01Z
 

This condition handles two initargs, :format-string and :format-arguments, which are used to specify a control string and arguments for a call to format. [annotate]

[annotate]

simple-parse-error  format-string &rest format-arguments [Function]
          

Signals a simple-parse-error error while parsing an input token. Does not return. format-string and format-args are as for format. [annotate]

[annotate]

input-not-of-required-type   [Error Condition]
          

The error that is signalled by input-not-of-required-type. This is a subclass of parse-error. [annotate]

This condition handles two initargs, :string and :type, which specify a string to be used in an error message and the expected presentation type. [annotate]

[annotate]

input-not-of-required-type  object type [Function]
          

Reports that input does not satisfy the specified type by signalling an input-not-of-required-type error. object is a parsed object or an unparsed token (a string). type is a presentation type specifier. Does not return. [annotate]

[annotate]