Files
old-pruning-excersise/lib/exceptions.rb
2018-08-13 15:01:28 +02:00

14 lines
215 B
Ruby

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