zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

error.ex (234B)


      1 defmodule Absinthe.Schema.Notation.Error do
      2   @moduledoc """
      3   Exception raised when a schema is invalid
      4   """
      5   defexception message: "Invalid notation schema"
      6 
      7   def exception(message) do
      8     %__MODULE__{message: message}
      9   end
     10 end