IncompleteNextCountError.st
author Claus Gittinger <cg@exept.de>
Tue, 09 Jul 2019 20:55:17 +0200
changeset 24417 03b083548da2
parent 7586 63e4900c8931
child 17711 39faaaf888b4
permissions -rw-r--r--
#REFACTORING by exept class: Smalltalk class changed: #recursiveInstallAutoloadedClassesFrom:rememberIn:maxLevels:noAutoload:packageTop:showSplashInLevels: Transcript showCR:(... bindWith:...) -> Transcript showCR:... with:...
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7586
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
     1
"
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
     2
 COPYRIGHT (c) 2001 by eXept Software AG
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
     3
              All Rights Reserved
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
     4
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
     5
 This software is furnished under a license and may be used
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
     6
 only in accordance with the terms of that license and with the
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
     8
 be provided or otherwise made available to, or used by, any
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
     9
 other person.  No title to or ownership of the software is
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    10
 hereby transferred.
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    11
"
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    12
6349
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    13
"{ Package: 'stx:libbasic' }"
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    14
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    15
StreamError subclass:#IncompleteNextCountError
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    16
	instanceVariableNames:''
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    17
	classVariableNames:''
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    19
	category:'Kernel-Exceptions-Errors'
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    20
!
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    21
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    22
!IncompleteNextCountError class methodsFor:'documentation'!
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    23
7586
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    24
copyright
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    25
"
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    26
 COPYRIGHT (c) 2001 by eXept Software AG
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    27
              All Rights Reserved
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    28
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    29
 This software is furnished under a license and may be used
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    30
 only in accordance with the terms of that license and with the
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    32
 be provided or otherwise made available to, or used by, any
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    33
 other person.  No title to or ownership of the software is
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    34
 hereby transferred.
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    35
"
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    36
!
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    37
6349
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    38
documentation
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    39
"
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    40
    There are not enough elements to complete the requested operation.
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    41
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    42
    [author:]
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    43
        Stefan Vogel (stefan@zwerg)
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    44
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    45
    [see also:]
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    46
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    47
    [instance variables:]
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    48
        parameter       number of available elements
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    49
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    50
"
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    51
! !
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    52
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    53
!IncompleteNextCountError class methodsFor:'initialization'!
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    54
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    55
initialize
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    56
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    57
    NotifierString := 'not enough elements available'.
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    58
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    59
    "
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    60
     self initialize
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    61
    "
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    62
! !
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    63
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    64
!IncompleteNextCountError class methodsFor:'documentation'!
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    65
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    66
version
7586
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    67
    ^ '$Header: /cvs/stx/stx/libbasic/IncompleteNextCountError.st,v 1.2 2003-08-29 19:14:43 cg Exp $'
6349
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    68
! !
7586
63e4900c8931 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6349
diff changeset
    69
6349
e2129a5fe59e initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    70
IncompleteNextCountError initialize!