EXn
Exn is a shorthand used in several programming language communities to refer to the concept of an exception value. An exception represents an error or unusual condition that disrupts normal program flow and can be raised, propagated, and eventually handled by a corresponding handler. Depending on the language, exn may be a simple tag or a structured object carrying a message and additional metadata such as a location, stack trace, or continuation information.
In OCaml, exn is the built-in type of all exceptions. Exceptions are values of type exn and
In the Scheme family of languages, including Racket, exn (and related exn:… variants) denotes an exception object
Overall, exn localization varies by language but shares the core idea: a first-class value used to signal,