CannotReturnError.st
changeset 15883 7b2bcbbbf0fa
parent 7589 2ac0ac814fc8
child 15887 1e45bc4b09b4
equal deleted inserted replaced
15882:89346cbd70de 15883:7b2bcbbbf0fa
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 "{ Package: 'stx:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
    14 
    13 
    15 ContextError subclass:#CannotReturnError
    14 ContextError subclass:#CannotReturnError
    16 	instanceVariableNames:''
    15 	instanceVariableNames:''
    17 	classVariableNames:''
    16 	classVariableNames:''
    18 	poolDictionaries:''
    17 	poolDictionaries:''
    19 	category:'Kernel-Methods'
    18 	category:'Kernel-Exceptions-Errors'
    20 !
    19 !
    21 
    20 
    22 !CannotReturnError class methodsFor:'documentation'!
    21 !CannotReturnError class methodsFor:'documentation'!
    23 
    22 
    24 copyright
    23 copyright
    45 ! !
    44 ! !
    46 
    45 
    47 !CannotReturnError class methodsFor:'documentation'!
    46 !CannotReturnError class methodsFor:'documentation'!
    48 
    47 
    49 version
    48 version
    50     ^ '$Header: /cvs/stx/stx/libbasic/CannotReturnError.st,v 1.4 2003-08-29 19:21:05 cg Exp $'
    49     ^ '$Header: /cvs/stx/stx/libbasic/CannotReturnError.st,v 1.5 2013-12-24 10:39:13 cg Exp $'
    51 ! !
    50 ! !
       
    51