IncompleteNextCountError.st
author Claus Gittinger <cg@exept.de>
Tue, 17 Jun 2003 18:10:28 +0200
changeset 7408 43bd10f2f2e6
parent 6349 e2129a5fe59e
child 7586 63e4900c8931
permissions -rw-r--r--
*** empty log message ***

"{ Package: 'stx:libbasic' }"

StreamError subclass:#IncompleteNextCountError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Errors'
!

!IncompleteNextCountError class methodsFor:'documentation'!

documentation
"
    There are not enough elements to complete the requested operation.

    [author:]
        Stefan Vogel (stefan@zwerg)

    [see also:]

    [instance variables:]
        parameter       number of available elements

"
! !

!IncompleteNextCountError class methodsFor:'initialization'!

initialize

    NotifierString := 'not enough elements available'.

    "
     self initialize
    "
! !

!IncompleteNextCountError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/IncompleteNextCountError.st,v 1.1 2001-12-21 16:36:26 stefan Exp $'
! !
IncompleteNextCountError initialize!