enable/disable exception handling added by iterrogo on Tue Nov 18 06:26:56 2014

(define catch-exceptions (make-parameter #t))

(handle-exceptions
  exn
  (if (catch-exceptions)
      (handle-the-exception)
      (abort exn))
  ...)