OCI.Error (oci v0.0.6)

View Source

Error codes for the OCI Registry API.

This module defines the error codes and messages for the OCI Registry API. It also provides a function to initialize an error struct with a given code and details.

Summary

Types

t()

@type t() :: %OCI.Error{
  code: atom() | nil,
  detail: any() | nil,
  external: atom() | nil,
  http_status: integer() | nil,
  message: String.t() | nil
}

Functions

init(code, details)