# HG changeset patch # User Claus Gittinger # Date 1363218228 -3600 # Node ID 9fa6e5ddbfda00dcfca5cd9234bf66615818a226 # Parent 4a035ff126df68ad80f3e8637755846a0c9b7428 added documentation diff -r 4a035ff126df -r 9fa6e5ddbfda OverflowError.st --- a/OverflowError.st Wed Mar 13 17:05:29 2013 +0100 +++ b/OverflowError.st Thu Mar 14 00:43:48 2013 +0100 @@ -9,7 +9,6 @@ other person. No title to or ownership of the software is hereby transferred. " - "{ Package: 'stx:libbasic' }" RangeError subclass:#OverflowError @@ -33,6 +32,13 @@ other person. No title to or ownership of the software is hereby transferred. " +! + +documentation +" + raised when the function-result overflows the allowed range. + (Float overflow) +" ! ! !OverflowError class methodsFor:'initialization'! @@ -44,7 +50,8 @@ !OverflowError class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/OverflowError.st,v 1.3 2003-08-29 19:14:41 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/OverflowError.st,v 1.4 2013-03-13 23:43:48 cg Exp $' ! ! + OverflowError initialize!