GOOPS calls one of the following generic functions when a “slot-ref” or “slot-set!” call specifies a non-existent slot name, or tries to reference a slot whose value is unbound.
When an application attempts to reference or set a class or instance slot by name, and the slot name is invalid for the specified class or object, GOOPS calls the
slot-missinggeneric function.The default methods all call
goops-errorwith an appropriate message.
When an application attempts to reference a class or instance slot, and the slot's value is unbound, GOOPS calls the
slot-unboundgeneric function.The default methods all call
goops-errorwith an appropriate message.