AllocationFailure.st
author Stefan Vogel <sv@exept.de>
Wed, 18 Feb 2004 17:13:01 +0100
changeset 7966 bd7113e2fb0d
parent 7591 19fa013c1c58
child 8483 3e76a8fe740a
permissions -rw-r--r--
Remove unused method
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
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
Error subclass:#AllocationFailure
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
6108
6a8332c136e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    38
!AllocationFailure class methodsFor:'testing'!
6a8332c136e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    39
6a8332c136e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    40
mayProceed
6a8332c136e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    41
    ^ true
6a8332c136e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    42
! !
6a8332c136e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    43
6107
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
!AllocationFailure class methodsFor:'documentation'!
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
version
7966
bd7113e2fb0d Remove unused method
Stefan Vogel <sv@exept.de>
parents: 7591
diff changeset
    47
    ^ '$Header: /cvs/stx/stx/libbasic/AllocationFailure.st,v 1.4 2004-02-18 16:13:01 stefan Exp $'
6107
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
! !