lib/easy/jsonapi/exceptions.rb in easy-jsonapi-1.0.1 vs lib/easy/jsonapi/exceptions.rb in easy-jsonapi-1.0.2

- old
+ new

@@ -2,10 +2,12 @@ require 'easy/jsonapi/exceptions/document_exceptions' require 'easy/jsonapi/exceptions/headers_exceptions' require 'easy/jsonapi/exceptions/naming_exceptions' require 'easy/jsonapi/exceptions/query_params_exceptions' +require 'easy/jsonapi/exceptions/user_defined_exceptions' +require 'easy/jsonapi/exceptions/json_parse_error' module JSONAPI # Namespace for the gem's Exceptions module Exceptions # Validates that the Query Parameters comply with the JSONAPI specification @@ -20,8 +22,12 @@ module DocumentExceptions end # Checking for JSONAPI naming rules compliance module NamingExceptions + end + + # Checking for User Defined Exceptions + module UserDefinedExceptions end end end