delete duplicate definition of Exception.exception

It overwrote the original definition in src/error.c, line 446.
This commit is contained in:
cremno
2015-08-17 20:51:25 +02:00
parent a1731254be
commit eec00ccf60
-15
View File
@@ -1,18 +1,3 @@
##
# 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
# ISO 15.2.24
class ArgumentError < StandardError
end