Next: , Previous: , Up: Objects Dictionary  


7.7.17 no-next-method [Standard Generic Function]

Syntax::

no-next-method generic-function method &rest args{result}*

Method Signatures::

no-next-method (generic-function standard-generic-function) (method standard-method) &rest args

Arguments and Values::

generic-functiongeneric function to which method belongs.

methodmethod that contained the call to call-next-method for which there is no next method.

args – arguments to call-next-method.

result—an object.

Description::

The generic function no-next-method is called by call-next-method when there is no next method.

The generic function no-next-method is not intended to be called by programmers. Programmers may write methods for it.

Exceptional Situations::

The system-supplied method on no-next-method signals an error of type error. [Editorial Note by KMP: perhaps control-error??]

See Also::

call-next-method