Packages

A simple and opinionated pipeline builder

Current section

Files

Jump to
ex_pipeline lib pipeline transform_error.ex
Raw

lib/pipeline/transform_error.ex

defmodule Pipeline.TransformError do
@moduledoc """
Error thrown at runtime when steps return invalid values.
This error is thrown if a step returns a value that is not an ok/error tuple, as defined by `Pipeline.Types.result()`
typespec.
"""
defexception [:message]
end