UnorderedNumbersError.st
author Claus Gittinger <cg@exept.de>
Thu, 05 Aug 2004 14:31:05 +0200
changeset 8464 e9f4d3766157
parent 7585 87d76b40f897
child 14872 4f25a33c51aa
child 17711 39faaaf888b4
permissions -rw-r--r--
*** empty log message ***

"
 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:#UnorderedNumbersError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Errors'
!

!UnorderedNumbersError 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.
"
! !

!UnorderedNumbersError class methodsFor:'initialization'!

initialize
    NotifierString := 'unordered'.
! !

!UnorderedNumbersError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/UnorderedNumbersError.st,v 1.4 2003-08-29 19:10:44 cg Exp $'
! !

UnorderedNumbersError initialize!