Represents a Python exception raised during execution.
Fields
:type- the exception type as an atom (e.g.,:value_error,:type_error):message- the exception message string, ornil:traceback- list ofExMonty.StackFramestructs
Summary
Types
@type t() :: %ExMonty.Exception{ message: String.t() | nil, traceback: [ExMonty.StackFrame.t()], type: atom() }