Current section

Files

Jump to
ckeditor5_phoenix lib errors invalid_custom_translations.ex
Raw

lib/errors/invalid_custom_translations.ex

defmodule CKEditor5.Errors.InvalidCustomTranslations do
@moduledoc """
Exception raised when custom translations are invalid.
"""
defexception [:reason]
@impl true
def message(exception) do
"Invalid Custom Translations: #{inspect(exception.reason)}"
end
end