((sample-cond
:initarg :text
:reader text-of))
(:report (lambda (c s)
(format s "this is sample error : ~A~%" (text-of c)))))
(error 'sample-condition :text "condition arg"))
(handler-case
(condition-test)
(sample-condition (sample-arg)
(format t "passed arg is it -> ~A~%" (text-of sample-arg)))))