* io.c (rb_open_file): encoding in mode string was ignored if perm is
[ruby-svn.git] / lib / shell / error.rb
blob8bb96c22da2bdc4c427cf27f5bab214b34571ac7
2 #   shell/error.rb - 
3 #       $Release Version: 0.7 $
4 #       $Revision$
5 #       by Keiju ISHITSUKA(keiju@ruby-lang.org)
7 # --
9 #   
12 require "e2mmap"
14 class Shell
15   module Error
16     extend Exception2MessageMapper
17     def_e2message TypeError, "wrong argument type %s (expected %s)"
19     def_exception :DirStackEmpty, "Directory stack empty."
20     def_exception :CantDefine, "Can't define method(%s, %s)."
21     def_exception :CantApplyMethod, "This method(%s) does not apply to this type(%s)."
22     def_exception :CommandNotFound, "Command not found(%s)."
23   end
24 end