lib/arrest/exceptions.rb in arrest-0.0.60 vs lib/arrest/exceptions.rb in arrest-0.0.61

- old
+ new

@@ -1,7 +1,13 @@ module Arrest module Errors class DocumentNotFoundError < StandardError end + + class PermissionDeniedError < StandardError + def initialize(err_obj) + super(err_obj) + end + end end end