Sha256: 48cf710a9dbc2dc430799795cd9872901253982042e71ed5671cb7ee0d7d5f55

Contents?: true

Size: 440 Bytes

Versions: 1

Compression:

Stored size: 440 Bytes

Contents

module Tcl
  module Ruby
    class TclError < StandardError; end
    class ParseError < TclError; end
    class CommandError < TclError; end
    class TclArgumentError < TclError
      # def initialize(msg)
      #   super("wrong \# args: should be\"#{msg}\"")
      # end
    end
    class TclVariableNotFoundError < TclError
      def initialize(var, type = '')
        super("can't read \"#{var}\": #{type}")
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tcl-ruby-0.1.1 lib/tcl/ruby/error.rb