Added retrying

This commit is contained in:
Senad Uka
2018-08-13 15:01:28 +02:00
parent 92cadb76ed
commit 5684e58826
7 changed files with 77 additions and 14 deletions

13
lib/exceptions.rb Normal file
View File

@@ -0,0 +1,13 @@
module Pruning
module Exceptions
class ServerErrorOnOrigin < StandardError
end
class OriginCannotFindTheResource < StandardError
end
class UnexpectedError < StandardError
end
end
end