BeamPatch.CompileError exception (beam_patch v0.2.0)

View Source

An error that is raised when a quoted or forms compilation fails.

Fields

  • :errors ([String.t/0]) - The errors that occurred during compilation.
  • :stage (:quoted | :forms) - The stage of compilation that failed.

Summary

Types

t()

@type t() :: %BeamPatch.CompileError{
  __exception__: true,
  errors: [String.t()],
  stage: :quoted | :forms
}