#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Fri, 07 Jul 2017 13:07:12 +0200
changeset 21990 7a56b05dae5e
parent 21989 e88b6fff98c7
child 21991 0533f6b00cce
#DOCUMENTATION by cg class: OverflowError class comment/format in: #documentation
OverflowError.st
--- a/OverflowError.st	Fri Jul 07 13:07:04 2017 +0200
+++ b/OverflowError.st	Fri Jul 07 13:07:12 2017 +0200
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 RangeError subclass:#OverflowError
 	instanceVariableNames:''
 	classVariableNames:''
@@ -36,8 +38,11 @@
 
 documentation
 "
-    raised when the function-result overflows the allowed range.
-    (Float overflow)
+    raised when the function-result overflows the allowed range,
+    or when some integer cannot be represented as instance of a particular
+    floating point format (Float overflow).
+
+    This error is usually proceedable and INF is returned as result then.
 "
 ! !
 
@@ -50,7 +55,7 @@
 !OverflowError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/OverflowError.st,v 1.4 2013-03-13 23:43:48 cg Exp $'
+    ^ '$Header$'
 ! !