MallocFailure.st
author fm
Mon, 26 Oct 2009 17:19:51 +0100
changeset 12357 0d668fb50783
parent 7594 4a9a55f9377e
child 14874 54f39b93b5a2
child 17711 39faaaf888b4
permissions -rw-r--r--
added: #additionalClassAttributesFor: changed: #classNamesAndAttributes_code_ignoreOldEntries:ignoreOldDefinition:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7594
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
     1
"
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
     2
 COPYRIGHT (c) 2001 by eXept Software AG
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
     3
              All Rights Reserved
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
     4
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
     5
 This software is furnished under a license and may be used
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
     6
 only in accordance with the terms of that license and with the
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
     8
 be provided or otherwise made available to, or used by, any
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
     9
 other person.  No title to or ownership of the software is
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    10
 hereby transferred.
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    11
"
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    12
6109
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"{ Package: 'stx:libbasic' }"
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
AllocationFailure subclass:#MallocFailure
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	instanceVariableNames:''
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	classVariableNames:''
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	category:'System-Support'
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
7594
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    22
!MallocFailure class methodsFor:'documentation'!
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    23
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    24
copyright
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    25
"
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    26
 COPYRIGHT (c) 2001 by eXept Software AG
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    27
              All Rights Reserved
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    28
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    29
 This software is furnished under a license and may be used
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    30
 only in accordance with the terms of that license and with the
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    32
 be provided or otherwise made available to, or used by, any
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    33
 other person.  No title to or ownership of the software is
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    34
 hereby transferred.
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    35
"
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    36
! !
6109
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
!MallocFailure class methodsFor:'documentation'!
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
version
7594
4a9a55f9377e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6109
diff changeset
    41
    ^ '$Header: /cvs/stx/stx/libbasic/MallocFailure.st,v 1.2 2003-08-30 12:33:56 cg Exp $'
6109
b21cb74cb6bc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
! !