InvalidReadError.st
changeset 8728 d70396dc4e96
parent 8513 aa129fd0e35e
child 17711 39faaaf888b4
child 25172 985406251ac3
equal deleted inserted replaced
8727:533d79aac561 8728:d70396dc4e96
       
     1 "
       
     2  COPYRIGHT (c) 2004 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 
     1 "{ Package: 'stx:libbasic' }"
    13 "{ Package: 'stx:libbasic' }"
     2 
    14 
     3 ReadError subclass:#InvalidReadError
    15 ReadError subclass:#InvalidReadError
     4 	instanceVariableNames:''
    16 	instanceVariableNames:''
     5 	classVariableNames:''
    17 	classVariableNames:''
     6 	poolDictionaries:''
    18 	poolDictionaries:''
     7 	category:'Kernel-Exceptions-Errors'
    19 	category:'Kernel-Exceptions-Errors'
     8 !
    20 !
     9 
    21 
       
    22 !InvalidReadError class methodsFor:'documentation'!
       
    23 
       
    24 copyright
       
    25 "
       
    26  COPYRIGHT (c) 2004 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 ! !
    10 
    37 
    11 !InvalidReadError methodsFor:'printing & storing'!
    38 !InvalidReadError methodsFor:'printing & storing'!
    12 
    39 
    13 description
    40 description
    14     ^ super description, ': ', parameter classNameWithArticle
    41     ^ super description, ': ', parameter classNameWithArticle
    15 ! !
    42 ! !
    16 
    43 
    17 !InvalidReadError class methodsFor:'documentation'!
    44 !InvalidReadError class methodsFor:'documentation'!
    18 
    45 
    19 version
    46 version
    20     ^ '$Header: /cvs/stx/stx/libbasic/InvalidReadError.st,v 1.2 2004-09-03 11:30:47 stefan Exp $'
    47     ^ '$Header: /cvs/stx/stx/libbasic/InvalidReadError.st,v 1.3 2005-02-02 11:02:06 cg Exp $'
    21 ! !
    48 ! !