NonIntegerIndexError.st
branchjv
changeset 18057 8da7c39a6322
parent 17911 a99f15c5efa5
parent 15180 33a5420b968d
child 20578 39641ba8d6e0
equal deleted inserted replaced
18056:ac63da6d9b6c 18057:8da7c39a6322
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 "{ Package: 'stx:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
    13 
    13 
    14 IndexNotFoundError subclass:#NonIntegerIndexError
    14 IndexNotFoundError subclass:#NonIntegerIndexError
    15 	instanceVariableNames:''
    15     instanceVariableNames: ''
    16 	classVariableNames:''
    16     classVariableNames: ''
    17 	poolDictionaries:''
    17     poolDictionaries: ''
    18 	category:'Kernel-Exceptions-Errors'
    18     category: 'Kernel-Exceptions-Errors'
    19 !
    19 !
    20 
    20 
    21 !NonIntegerIndexError class methodsFor:'documentation'!
    21 !NonIntegerIndexError class methodsFor:'documentation'!
    22 
    22 
    23 copyright
    23 copyright
    39     raised when a non-integer index is used when accessing an 
    39     raised when a non-integer index is used when accessing an 
    40     arrayed collection.
    40     arrayed collection.
    41 "
    41 "
    42 ! !
    42 ! !
    43 
    43 
       
    44 
       
    45 !NonIntegerIndexError class methodsFor:'initialization'!
       
    46 
       
    47 initialize
       
    48     NotifierString := 'index must be integer'.
       
    49 
       
    50     "
       
    51      self initialize
       
    52     "
       
    53 ! !
       
    54 
       
    55 
    44 !NonIntegerIndexError class methodsFor:'documentation'!
    56 !NonIntegerIndexError class methodsFor:'documentation'!
    45 
    57 
    46 version
    58 version
    47     ^ '$Header: /cvs/stx/stx/libbasic/NonIntegerIndexError.st,v 1.3 2003/08/29 19:15:18 cg Exp $'
    59     ^ '$Header: /cvs/stx/stx/libbasic/NonIntegerIndexError.st,v 1.4 2013-04-27 10:04:41 cg Exp $'
    48 !
    60 !
    49 
    61 
    50 version_SVN
    62 version_SVN
    51     ^ '$Id: NonIntegerIndexError.st 10761 2012-01-19 11:46:00Z vranyj1 $'
    63     ^ '$Id: NonIntegerIndexError.st 10761 2012-01-19 11:46:00Z vranyj1 $'
    52 ! !
    64 ! !
    53 
    65 
    54 
    66 
    55 
    67 NonIntegerIndexError initialize!