Files
mruby-mruby/mrblib/error.rb
T
2012-05-03 17:51:02 +08:00

15 lines
175 B
Ruby

##
# Exception
#
# ISO 15.2.22
class Exception
##
# Raise an exception.
#
# ISO 15.2.22.4.1
def self.exception(*args, &block)
self.new(*args, &block)
end
end