FFix.Runner.Error exception (ffix v0.1.0)

Copy Markdown View Source

Error raised or returned by FFix.Runner when command execution fails.

Summary

Types

kind()

@type kind() :: :spawn | :exit

t()

@type t() :: %FFix.Runner.Error{
  __exception__: true,
  exit_status: FFix.Runner.Result.exit_status() | nil,
  kind: kind(),
  message: String.t(),
  result: FFix.Runner.Result.t()
}