Files
old-pruning-excersise/lib/exceptions.rb

13 lines
213 B
Ruby
Raw Normal View History

2018-08-13 15:01:28 +02:00
module Pruning
module Exceptions
class ServerErrorOnOrigin < StandardError
end
class OriginCannotFindTheResource < StandardError
2018-08-13 18:54:12 +02:00
end
2018-08-13 15:01:28 +02:00
class UnexpectedError < StandardError
end
end
end