Current section

Files

Jump to
ash_oban lib errors trigger_no_longer_applies.ex
Raw

lib/errors/trigger_no_longer_applies.ex

# SPDX-FileCopyrightText: 2023 ash_oban contributors <https://github.com/ash-project/ash_oban/graphs.contributors>
#
# SPDX-License-Identifier: MIT
defmodule AshOban.Errors.TriggerNoLongerApplies do
@moduledoc "Used when an invalid value is provided for an action argument"
use Splode.Error, class: :invalid
def message(_) do
"Trigger no longer applies"
end
end