added documentation
authorClaus Gittinger <cg@exept.de>
Thu, 14 Mar 2013 00:43:59 +0100
changeset 14871 281b5dc66843
parent 14870 07c05703fd46
child 14872 4f25a33c51aa
added documentation
UnderflowError.st
--- a/UnderflowError.st	Thu Mar 14 00:43:54 2013 +0100
+++ b/UnderflowError.st	Thu Mar 14 00:43:59 2013 +0100
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libbasic' }"
 
 RangeError subclass:#UnderflowError
@@ -33,6 +32,13 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
+!
+
+documentation
+"
+    raised when the function-result underflows the allowed range.
+    (Float underflow)
+"
 ! !
 
 !UnderflowError class methodsFor:'initialization'!
@@ -44,7 +50,8 @@
 !UnderflowError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UnderflowError.st,v 1.3 2003-08-29 19:14:51 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UnderflowError.st,v 1.4 2013-03-13 23:43:59 cg Exp $'
 ! !
 
+
 UnderflowError initialize!