2016-12-22 14:34:19 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mastodon
|
|
|
|
class Error < StandardError; end
|
2017-02-26 16:23:06 -06:00
|
|
|
class NotPermittedError < Error; end
|
|
|
|
class ValidationError < Error; end
|
2017-04-03 15:54:46 -05:00
|
|
|
class RaceConditionError < Error; end
|
2017-07-19 18:59:07 -05:00
|
|
|
|
|
|
|
class UnexpectedResponseError < Error
|
|
|
|
def initialize(response = nil)
|
|
|
|
@response = response
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
|
|
|
"#{@response.uri} returned code #{@response.code}"
|
|
|
|
end
|
|
|
|
end
|
2016-12-22 14:34:19 -06:00
|
|
|
end
|