Packages

CKEditor 5 integration for Phoenix Framework

Retired package: Renamed - Moved to ckeditor5-phoenix

Current section

Files

Jump to
ckeditor5 lib errors cloud_not_configured.ex
Raw

lib/errors/cloud_not_configured.ex

defmodule CKEditor5.Errors.CloudNotConfigured do
@moduledoc """
Exception raised when Cloud is not configured in the preset.
"""
defexception [:preset]
@impl true
def message(_exception) do
"Cloud is not configured in the used preset."
end
end