Packages

Bookk is a simple library that provides building blocks for operating journal entries and manipulating double-entry bookkeeping accounting ledgers.

Retired package: Release invalid - Please move to v0.1.2

Current section

Files

Jump to
bookk lib bookk unbalanced_error.ex
Raw

lib/bookk/unbalanced_error.ex

defmodule Bookk.UnbalancedError do
@moduledoc """
An error representing that something (a journal entry, a ledger, a state...)
isn't balanced.
"""
@typedoc false
@type t :: %Bookk.UnbalancedError{
message: String.t()
}
defexception [:message]
end