2016-12-23 07:34:19 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mastodon
|
|
|
|
class Error < StandardError; end
|
2017-02-27 09:23:06 +11:00
|
|
|
class NotPermittedError < Error; end
|
|
|
|
class ValidationError < Error; end
|
2018-02-25 05:16:11 +11:00
|
|
|
class HostValidationError < ValidationError; end
|
2018-03-26 23:02:10 +11:00
|
|
|
class LengthValidationError < ValidationError; end
|
2018-04-23 17:16:38 +10:00
|
|
|
class DimensionsValidationError < ValidationError; end
|
2017-04-04 06:54:46 +10:00
|
|
|
class RaceConditionError < Error; end
|
2017-07-20 09:59:07 +10:00
|
|
|
|
|
|
|
class UnexpectedResponseError < Error
|
|
|
|
def initialize(response = nil)
|
2017-07-27 08:38:20 +10:00
|
|
|
if response.respond_to? :uri
|
|
|
|
super("#{response.uri} returned code #{response.code}")
|
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
2017-07-20 09:59:07 +10:00
|
|
|
end
|
|
|
|
end
|
2016-12-23 07:34:19 +11:00
|
|
|
end
|