blob: 66f0ee87801a296bf7b9bc1e642936746c765539 [file] [log] [blame]
# package etch/bindings/ruby/support
class Etch_RuntimeException < Exception
attr :msg, true
# Constructs the EtchRuntimeException.
# @param msg description of the exception that was caught by the stub
#
def initialize( msg )
@msg = msg
end
def message()
return msg
end
end