Packages

Elixir library allowing to interact with bitmap images.

Current section

Files

Jump to
bmp lib exceptions file_read_error.ex
Raw

lib/exceptions/file_read_error.ex

defmodule Exceptions.FileReadError do
defexception [:message, :path]
def message(%{message: message, path: path}) do
"error reading file \"#{path}\": #{message}"
end
end