&read-error

[condition-type] &read-error

SRFI-36

(define-condition-type &read-error &error
  read-error?
  (line read-error-line)
  (column read-error-column)
  (position read-error-position)
  (span read-error-span))

See &condition, &error.