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