diff options
Diffstat (limited to 'app/lib')
-rw-r--r-- | app/lib/exceptions.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/lib/exceptions.rb b/app/lib/exceptions.rb new file mode 100644 index 000000000..359228c29 --- /dev/null +++ b/app/lib/exceptions.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +module Mastodon + class Error < StandardError; end + class NotPermitted < Error; end +end |