about summary refs log tree commit diff
path: root/app/lib/exceptions.rb
blob: 34d84a34f9afd33c9af0995b47612eecf62f8a06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Mastodon
  class Error < StandardError; end
  class NotPermittedError < Error; end
  class ValidationError < Error; end
  class RaceConditionError < Error; end

  class UnexpectedResponseError < Error
    def initialize(response = nil)
      @response = response
    end

    def to_s
      "#{@response.uri} returned code #{@response.code}"
    end
  end
end