View Source LibOss.Exception exception (lib_oss v0.2.1)

General exception with an optional string, map, or Keyword list stored in exception details

Summary

Types

@type t() :: %LibOss.Exception{
  __exception__: true,
  details: any(),
  message: String.t() | nil
}

Functions

Link to this function

new(message, details \\ nil)

View Source
@spec new(String.t() | nil, any()) :: t()