2001-05-17 06:02:47 -04:00
|
|
|
#
|
|
|
|
# shell/error.rb -
|
|
|
|
# $Release Version: 0.6.0 $
|
|
|
|
# $Revision$
|
|
|
|
# $Date$
|
|
|
|
# by Keiju ISHITSUKA(Nihon Rational Software Co.,Ltd)
|
|
|
|
#
|
|
|
|
# --
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
require "e2mmap"
|
|
|
|
|
|
|
|
class Shell
|
|
|
|
module Error
|
|
|
|
extend Exception2MessageMapper
|
|
|
|
def_e2message TypeError, "wrong argument type %s (expected %s)"
|
|
|
|
|
|
|
|
def_exception :DirStackEmpty, "Directory stack empty."
|
2003-02-07 14:00:21 -05:00
|
|
|
def_exception :CantDefine, "Can't define method(%s, %s)."
|
|
|
|
def_exception :CantApplyMethod, "This method(%s) does not apply to this type(%s)."
|
2001-05-17 06:02:47 -04:00
|
|
|
def_exception :CommandNotFound, "Command not found(%s)."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|