Sha256: 71ee59de10ce286a12d00f43e45b97f5227fd2dcd6e79a962c8defdcb6544f0c
Contents?: true
Size: 536 Bytes
Versions: 45
Compression:
Stored size: 536 Bytes
Contents
module Scimitar # Raised when an invalid query is attempted, either by being malformed or by # being unsupported in some way. # class FilterError < ErrorResponse def initialize(message = nil) detail = 'The specified filter syntax was invalid, or the specified attribute and filter comparison combination is not supported' if message.present? detail << ":\n#{message}" end super( status: 400, scimType: 'invalidFilter', detail: detail ) end end end
Version data entries
45 entries across 45 versions & 2 rubygems