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

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