summaryrefslogtreecommitdiffhomepage
path: root/mrblib/error.rb
blob: 88da1825c84d30933c92bf1f26f7d87ceb0d5ab1 (plain)
1
2
3
4
5
6
7
8
9
#
#  Exception
#
class Exception
  # 15.2.22.4.1
  def self.exception(*args, &block)
    self.new(*args, &block)
  end
end