aboutsummaryrefslogtreecommitdiffstats
path: root/lib/aclog
diff options
context:
space:
mode:
authorre4k <re4k@re4k.info>2013-03-28 02:11:40 +0900
committerre4k <re4k@re4k.info>2013-03-28 02:11:40 +0900
commit295db76b7643868456eafb98cf760a5e383b41ed (patch)
tree054845af698810440ce1b96324618fb05ee67cb2 /lib/aclog
parentb4972590475eb595bc88f6ee47125fe8ca6e1fb2 (diff)
downloadaclog-295db76b7643868456eafb98cf760a5e383b41ed.tar.gz
Refactor
Diffstat (limited to 'lib/aclog')
-rw-r--r--lib/aclog/exceptions.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/aclog/exceptions.rb b/lib/aclog/exceptions.rb
new file mode 100644
index 0000000..5346cf6
--- /dev/null
+++ b/lib/aclog/exceptions.rb
@@ -0,0 +1,9 @@
+module Aclog
+ module Exceptions
+ class UserNotFound < StandardError; end
+ class UserNotRegistered < StandardError; end
+ class UserProtected < StandardError; end
+ class LoginRequired < StandardError; end
+ class TweetNotFound < StandardError; end
+ end
+end