summaryrefslogtreecommitdiffstats
path: root/lib/shell/error.rb
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-17 10:02:47 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-17 10:02:47 +0000
commit61320db5b554e90c8fbcedd493213cb0f72c107b (patch)
tree911c962685a2c4caf03fc058a9a0afd3a3a0bdeb /lib/shell/error.rb
parent4fd3a0b5d5f3ae606ad25d34464b7597beb44ace (diff)
downloadruby-61320db5b554e90c8fbcedd493213cb0f72c107b.tar.gz
ruby-61320db5b554e90c8fbcedd493213cb0f72c107b.tar.xz
ruby-61320db5b554e90c8fbcedd493213cb0f72c107b.zip
Initial revision
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1418 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/shell/error.rb')
-rw-r--r--lib/shell/error.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/shell/error.rb b/lib/shell/error.rb
new file mode 100644
index 000000000..df5e669af
--- /dev/null
+++ b/lib/shell/error.rb
@@ -0,0 +1,26 @@
+#
+# 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."
+ def_exception :CanNotDefine, "Can't define method(%s, %s)."
+ def_exception :CanNotMethodApply, "This method(%s) can't apply this type(%s)."
+ def_exception :CommandNotFound, "Command not found(%s)."
+ end
+end
+