summaryrefslogtreecommitdiffhomepage
path: root/mrblib/error.rb
blob: 5660d823511fb7e71b0d0c8425baf9efdc7e30cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
##
# 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