UnorderedNumbersError.st
author Stefan Vogel <sv@exept.de>
Fri, 20 Jun 2003 09:32:25 +0200
changeset 7435 c5afb1b0fd1b
parent 6690 07ef28245da8
child 7585 87d76b40f897
permissions -rw-r--r--
Prepare for moving of SubclassInfo to subclass instcar in Class

"{ Package: 'stx:libbasic' }"

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


!UnorderedNumbersError class methodsFor:'initialization'!

initialize
    NotifierString := 'unordered'.
! !

!UnorderedNumbersError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/UnorderedNumbersError.st,v 1.3 2002-07-31 14:34:38 cg Exp $'
! !
UnorderedNumbersError initialize!