about summary refs log tree commit diff
path: root/app/lib/exceptions.rb
blob: 9bc802c12074f0bf5aa9254fe53255078f783d0e (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

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