Sha256: a7922bd102d4145d3375607376d50ddae006663288444193a7c0b95dfbda8c01
Contents?: true
Size: 622 Bytes
Versions: 31
Compression:
Stored size: 622 Bytes
Contents
# frozen_string_literal: true module Blacklight module Exceptions class AccessDenied < StandardError end # When a request for a single solr document by id # is not successful, we can raise this exception. # Deprecated; this will be removed in Blacklight 6.0: class InvalidSolrID < RuntimeError end # In Blacklight 6.0, this exception can subclass RuntimeError directly class RecordNotFound < InvalidSolrID end class InvalidRequest < StandardError end class ExpiredSessionToken < StandardError end class ECONNREFUSED < ::Errno::ECONNREFUSED; end end end
Version data entries
31 entries across 31 versions & 1 rubygems