Sha256: 7cdd040b59e4aa148f186486394ab5bab6939ee2bcae2dc57272405a006bea7a
Contents?: true
Size: 332 Bytes
Versions: 5
Compression:
Stored size: 332 Bytes
Contents
module JsonapiCompliable module Errors class BadFilter < StandardError; end class UnsupportedPageSize < StandardError def initialize(size, max) @size, @max = size, max end def message "Requested page size #{@size} is greater than max supported size #{@max}" end end end end
Version data entries
5 entries across 5 versions & 1 rubygems