AllocationFailure.st
author Claus Gittinger <cg@exept.de>
Fri, 29 Aug 2003 21:30:47 +0200
changeset 7591 19fa013c1c58
parent 6108 6a8332c136e2
child 7966 bd7113e2fb0d
permissions -rw-r--r--
*** empty log message ***
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
6a8332c136e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    44
mayResume
6a8332c136e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    45
    ^ true
6a8332c136e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    46
! !
6a8332c136e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    47
6107
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
!AllocationFailure class methodsFor:'documentation'!
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
version
7591
19fa013c1c58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6108
diff changeset
    51
    ^ '$Header: /cvs/stx/stx/libbasic/AllocationFailure.st,v 1.3 2003-08-29 19:30:47 cg Exp $'
6107
430dfb5fef3f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
! !