ex-scopes/lib/web/server/error_json.ex

28 lines
762 B
Elixir

defmodule Scopes.Web.Server.ErrorJSON do
@moduledoc """
This module is invoked by your endpoint in case of errors on JSON requests.
See config/config.exs.
"""
alias Scopes.Util
require Logger
require Util
# If you want to customize a particular status code,
# you may add your own clauses, such as:
#
# def render("500.json", _assigns) do
# %{errors: %{detail: "Internal Server Error"}}
# end
# By default, Phoenix returns the status message from
# the template name. For example, "404.json" becomes
# "Not Found".
def render(template, assigns) do
message = assigns.reason.message
Logger.warning(Util.show [message])
%{errors: %{detail: Phoenix.Controller.status_message_from_template(template)}}
end
end