Sha256: 9ff164d91b42b59aa1bef7e66768dceeea01353b9170f52e66d4c3b293efdb2c
Contents?: true
Size: 516 Bytes
Versions: 7
Compression:
Stored size: 516 Bytes
Contents
module Waistband module Errors module Permissions class PermissionError < StandardError; end class Create < PermissionError; end class DeleteIndex < PermissionError; end class Destroy < PermissionError; end class Read < PermissionError; end class Write < PermissionError; end end class IndexExists < StandardError; end class IndexNotFound < StandardError; end class NoSearchHits < StandardError; end class UnableToSave < StandardError; end end end
Version data entries
7 entries across 7 versions & 1 rubygems