PositionOutOfBoundsError.st
author Stefan Vogel <sv@exept.de>
Fri, 20 Jun 2003 09:32:25 +0200
changeset 7435 c5afb1b0fd1b
parent 7232 1d05a293b8b0
child 7586 63e4900c8931
permissions -rw-r--r--
Prepare for moving of SubclassInfo to subclass instcar in Class
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6310
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libbasic' }"
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
StreamError subclass:#PositionOutOfBoundsError
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	category:'Kernel-Exceptions-Errors'
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
!PositionOutOfBoundsError class methodsFor:'documentation'!
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
documentation
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"
7232
1d05a293b8b0 comments
Claus Gittinger <cg@exept.de>
parents: 6310
diff changeset
    14
    Raised when an invalid postioning operation is attempted 
6310
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
"
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
! !
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
!PositionOutOfBoundsError class methodsFor:'documentation'!
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
version
7232
1d05a293b8b0 comments
Claus Gittinger <cg@exept.de>
parents: 6310
diff changeset
    21
    ^ '$Header: /cvs/stx/stx/libbasic/PositionOutOfBoundsError.st,v 1.2 2003-04-24 08:20:20 cg Exp $'
6310
38ee9f45d52b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
! !