RangeError.st
author Claus Gittinger <cg@exept.de>
Mon, 09 Jan 2012 17:09:54 +0100
changeset 13905 7eb024efb58a
parent 7586 63e4900c8931
child 14870 07c05703fd46
child 17711 39faaaf888b4
permissions -rw-r--r--
added: #parity

"
 COPYRIGHT (c) 2001 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

"{ Package: 'stx:libbasic' }"

ArithmeticError subclass:#RangeError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Errors'
!

!RangeError class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2001 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
! !

!RangeError class methodsFor:'initialization'!

initialize
    NotifierString := 'numeric range error'.
! !

!RangeError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/RangeError.st,v 1.4 2003-08-29 19:15:21 cg Exp $'
! !

RangeError initialize!