View Source Venomous.SnakeError (Venomous v0.7.7)

A module to handle errors raised during Python function calls.

This module defines a struct for storing exception information, including the exception itself, the error message, and the backtrace.

Summary

Types

@type t() :: %Venomous.SnakeError{
  backtrace: String.t(),
  error: String.t(),
  exception: String.t()
}