Packages

SAML 2.0 Service Provider (SP) library for Elixir/Phoenix applications. Enables SP-initiated and IdP-initiated SSO, Single Logout, SP metadata generation, and multi-IdP support with pluggable assertion storage.

Current section

Files

Jump to
ex_saml lib ex_saml config_error.ex
Raw

lib/ex_saml/config_error.ex

defmodule ExSaml.ConfigError do
@moduledoc false
defexception [:message]
@spec exception(map) :: Exception.t()
def exception(data) when is_map(data) do
%__MODULE__{message: "invalid_config: #{inspect(data)}"}
end
end