Files
old-pruning-excersise/lib/exceptions.rb
2018-08-13 18:54:12 +02:00

13 lines
213 B
Ruby

module Pruning
module Exceptions
class ServerErrorOnOrigin < StandardError
end
class OriginCannotFindTheResource < StandardError
end
class UnexpectedError < StandardError
end
end
end