~ubuntu-branches/ubuntu/hardy/ruby1.8/hardy-updates

« back to all changes in this revision

Viewing changes to lib/shell/error.rb

  • Committer: Bazaar Package Importer
  • Author(s): akira yamada
  • Date: 2007-03-13 22:11:58 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070313221158-h3oql37brlaf2go2
Tags: 1.8.6-1
* new upstream version, 1.8.6.
* libruby1.8 conflicts with libopenssl-ruby1.8 (< 1.8.6) (closes: #410018)
* changed packaging style to cdbs from dbs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
#   shell/error.rb - 
 
3
#       $Release Version: 0.6.0 $
 
4
#       $Revision: 11708 $
 
5
#       $Date: 2007-02-13 08:01:19 +0900 (Tue, 13 Feb 2007) $
 
6
#       by Keiju ISHITSUKA(Nihon Rational Software Co.,Ltd)
 
7
#
 
8
# --
 
9
#
 
10
#   
 
11
#
 
12
 
 
13
require "e2mmap"
 
14
 
 
15
class Shell
 
16
  module Error
 
17
    extend Exception2MessageMapper
 
18
    def_e2message TypeError, "wrong argument type %s (expected %s)"
 
19
 
 
20
    def_exception :DirStackEmpty, "Directory stack empty."
 
21
    def_exception :CantDefine, "Can't define method(%s, %s)."
 
22
    def_exception :CantApplyMethod, "This method(%s) does not apply to this type(%s)."
 
23
    def_exception :CommandNotFound, "Command not found(%s)."
 
24
  end
 
25
end
 
26