mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
10 lines
123 B
Ruby
10 lines
123 B
Ruby
#
|
|
# Exception
|
|
#
|
|
class Exception
|
|
# 15.2.22.4.1
|
|
def self.exception(*args, &block)
|
|
self.new(*args, &block)
|
|
end
|
|
end
|