AllocationFailure.st
author Stefan Vogel <sv@exept.de>
Sun, 22 Aug 2004 19:47:38 +0200
changeset 8483 3e76a8fe740a
parent 7966 bd7113e2fb0d
child 14875 a9c972a99f8f
child 17711 39faaaf888b4
permissions -rw-r--r--
Change superclass to ProceedableError
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7591
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
     1
"
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
     2
 COPYRIGHT (c) 2001 by eXept Software AG
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
     3
              All Rights Reserved
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
     4
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
     5
 This software is furnished under a license and may be used
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
     6
 only in accordance with the terms of that license and with the
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
     8
 be provided or otherwise made available to, or used by, any
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
     9
 other person.  No title to or ownership of the software is
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    10
 hereby transferred.
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    11
"
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    12
6107
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"{ Package: 'stx:libbasic' }"
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
8483
3e76a8fe740a Change superclass to ProceedableError
Stefan Vogel <sv@exept.de>
parents: 7966
diff changeset
    15
ProceedableError subclass:#AllocationFailure
6107
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	instanceVariableNames:''
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	classVariableNames:''
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	category:'System-Support'
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
7591
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    22
!AllocationFailure class methodsFor:'documentation'!
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    23
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    24
copyright
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    25
"
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    26
 COPYRIGHT (c) 2001 by eXept Software AG
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    27
              All Rights Reserved
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    28
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    29
 This software is furnished under a license and may be used
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    30
 only in accordance with the terms of that license and with the
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    32
 be provided or otherwise made available to, or used by, any
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    33
 other person.  No title to or ownership of the software is
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    34
 hereby transferred.
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    35
"
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    36
! !
6107
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
!AllocationFailure class methodsFor:'documentation'!
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
version
8483
3e76a8fe740a Change superclass to ProceedableError
Stefan Vogel <sv@exept.de>
parents: 7966
diff changeset
    41
    ^ '$Header: /cvs/stx/stx/libbasic/AllocationFailure.st,v 1.5 2004-08-22 17:47:31 stefan Exp $'
6107
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
! !