about summary refs log tree commit diff
path: root/app/lib/exceptions.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-02-26 23:23:47 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-02-26 23:23:47 +0100
commita0df694c2431b30f2f1051cd9ddc9344229d600d (patch)
tree5ed179289819d61df1a4c15851389aa7d9b42f19 /app/lib/exceptions.rb
parent1b8d3375c874c0ee5374000500075df026c56a16 (diff)
parent5f511324b65f94d800dbbd3850214955d7d9eb73 (diff)
Merge branch 'rmhasan-fix_462'
Diffstat (limited to 'app/lib/exceptions.rb')
-rw-r--r--app/lib/exceptions.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/lib/exceptions.rb b/app/lib/exceptions.rb
index 359228c29..200da9fe1 100644
--- a/app/lib/exceptions.rb
+++ b/app/lib/exceptions.rb
@@ -2,5 +2,6 @@
 
 module Mastodon
   class Error < StandardError; end
-  class NotPermitted < Error; end
+  class NotPermittedError < Error; end
+  class ValidationError < Error; end
 end