aboutsummaryrefslogtreecommitdiffstats
path: root/lib/aclog
diff options
context:
space:
mode:
authorRhenium <rhenium@rhe.jp>2014-02-09 18:27:31 +0900
committerRhenium <rhenium@rhe.jp>2014-02-09 18:27:31 +0900
commit5975ed19470c2eac079024fcafb56e18d6ecec74 (patch)
tree6c90ba08c94ab5f4f620f8c314c6b7d0425517e3 /lib/aclog
parent606054adb73efed232935073a219313e15aa4bba (diff)
downloadaclog-5975ed19470c2eac079024fcafb56e18d6ecec74.tar.gz
rewrite APIs with Grape and RABL
Diffstat (limited to 'lib/aclog')
-rw-r--r--lib/aclog/exceptions.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/aclog/exceptions.rb b/lib/aclog/exceptions.rb
index 9b7078f..5eafc99 100644
--- a/lib/aclog/exceptions.rb
+++ b/lib/aclog/exceptions.rb
@@ -17,5 +17,10 @@ module Aclog
class AccountPrivate < UserError; end
class DocumentNotFound < StandardError; end
+
+ class AclogError < StandardError; end
+ class NotFound < AclogError; end
+ class Forbidden < AclogError; end
+ class OAuthEchoError < AclogError; end
end
end