13 lines
213 B
Ruby
13 lines
213 B
Ruby
module Pruning
|
|
module Exceptions
|
|
class ServerErrorOnOrigin < StandardError
|
|
end
|
|
|
|
class OriginCannotFindTheResource < StandardError
|
|
end
|
|
|
|
class UnexpectedError < StandardError
|
|
end
|
|
end
|
|
end
|