ElementBoundsError.st
changeset 8327 cf1e5a9a98e5
child 17711 39faaaf888b4
child 20451 7abb4abef009
equal deleted inserted replaced
8326:be991fbe6e95 8327:cf1e5a9a98e5
       
     1 "
       
     2  COPYRIGHT (c) 2001 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
       
    13 "{ Package: 'stx:libbasic' }"
       
    14 
       
    15 Error subclass:#ElementBoundsError
       
    16 	instanceVariableNames:''
       
    17 	classVariableNames:''
       
    18 	poolDictionaries:''
       
    19 	category:'Kernel-Exceptions-Errors'
       
    20 !
       
    21 
       
    22 !ElementBoundsError class methodsFor:'documentation'!
       
    23 
       
    24 copyright
       
    25 "
       
    26  COPYRIGHT (c) 2001 by eXept Software AG
       
    27               All Rights Reserved
       
    28 
       
    29  This software is furnished under a license and may be used
       
    30  only in accordance with the terms of that license and with the
       
    31  inclusion of the above copyright notice.   This software may not
       
    32  be provided or otherwise made available to, or used by, any
       
    33  other person.  No title to or ownership of the software is
       
    34  hereby transferred.
       
    35 "
       
    36 !
       
    37 
       
    38 documentation
       
    39 "
       
    40     ElementBoundsError is raised to report an error that anElement is out of bounds 
       
    41     (e.g. cannot be put into a collection).
       
    42 
       
    43     Instance Variables:
       
    44         parameter - the element that is out of bounds.
       
    45 "
       
    46 ! !
       
    47 
       
    48 !ElementBoundsError class methodsFor:'initialization'!
       
    49 
       
    50 initialize
       
    51     NotifierString := 'element not appropriate or out of bounds'.
       
    52 ! !
       
    53 
       
    54 !ElementBoundsError class methodsFor:'documentation'!
       
    55 
       
    56 version
       
    57     ^ '$Header: /cvs/stx/stx/libbasic/ElementBoundsError.st,v 1.1 2004-04-23 11:16:20 stefan Exp $'
       
    58 ! !
       
    59 
       
    60 ElementBoundsError initialize!