MallocFailure.st
changeset 7594 4a9a55f9377e
parent 6109 b21cb74cb6bc
child 14874 54f39b93b5a2
child 17711 39faaaf888b4
equal deleted inserted replaced
7593:e7550b9ef84a 7594:4a9a55f9377e
       
     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 
     1 "{ Package: 'stx:libbasic' }"
    13 "{ Package: 'stx:libbasic' }"
     2 
    14 
     3 AllocationFailure subclass:#MallocFailure
    15 AllocationFailure subclass:#MallocFailure
     4 	instanceVariableNames:''
    16 	instanceVariableNames:''
     5 	classVariableNames:''
    17 	classVariableNames:''
     6 	poolDictionaries:''
    18 	poolDictionaries:''
     7 	category:'System-Support'
    19 	category:'System-Support'
     8 !
    20 !
     9 
    21 
       
    22 !MallocFailure 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 ! !
    10 
    37 
    11 !MallocFailure class methodsFor:'documentation'!
    38 !MallocFailure class methodsFor:'documentation'!
    12 
    39 
    13 version
    40 version
    14     ^ '$Header: /cvs/stx/stx/libbasic/MallocFailure.st,v 1.1 2001-10-25 17:32:56 cg Exp $'
    41     ^ '$Header: /cvs/stx/stx/libbasic/MallocFailure.st,v 1.2 2003-08-30 12:33:56 cg Exp $'
    15 ! !
    42 ! !