Add documentation to Exception

This commit is contained in:
Daniel Bovensiepen
2012-05-03 17:51:02 +08:00
parent ac21975494
commit 04f74c9cc1
+8 -3
View File
@@ -1,8 +1,13 @@
##
# Exception
#
# Exception
#
# ISO 15.2.22
class Exception
# 15.2.22.4.1
##
# Raise an exception.
#
# ISO 15.2.22.4.1
def self.exception(*args, &block)
self.new(*args, &block)
end