ClassBuildError.st
author Claus Gittinger <cg@exept.de>
Tue, 09 Jul 2019 20:55:17 +0200
changeset 24417 03b083548da2
parent 20437 f36b7fbeea41
child 20578 39641ba8d6e0
permissions -rw-r--r--
#REFACTORING by exept class: Smalltalk class changed: #recursiveInstallAutoloadedClassesFrom:rememberIn:maxLevels:noAutoload:packageTop:showSplashInLevels: Transcript showCR:(... bindWith:...) -> Transcript showCR:... with:...
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
20437
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
     1
"{ Encoding: utf8 }"
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
     2
12046
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
     3
"
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
     4
 COPYRIGHT (c) 2009 by eXept Software AG
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
     5
              All Rights Reserved
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
     6
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
     7
 This software is furnished under a license and may be used
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
     8
 only in accordance with the terms of that license and with the
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    10
 be provided or otherwise made available to, or used by, any
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    11
 other person.  No title to or ownership of the software is
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    12
 hereby transferred.
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    13
"
11884
cb5786ab8410 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ Package: 'stx:libbasic' }"
cb5786ab8410 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
20437
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    16
"{ NameSpace: Smalltalk }"
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    17
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    18
ExecutionError subclass:#ClassBuildError
11884
cb5786ab8410 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	instanceVariableNames:''
cb5786ab8410 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	classVariableNames:''
cb5786ab8410 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	poolDictionaries:''
cb5786ab8410 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
	category:'Kernel-Support'
cb5786ab8410 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!
cb5786ab8410 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
12046
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    25
!ClassBuildError class methodsFor:'documentation'!
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    26
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    27
copyright
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    28
"
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    29
 COPYRIGHT (c) 2009 by eXept Software AG
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    30
              All Rights Reserved
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    31
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    32
 This software is furnished under a license and may be used
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    33
 only in accordance with the terms of that license and with the
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    35
 be provided or otherwise made available to, or used by, any
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    36
 other person.  No title to or ownership of the software is
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    37
 hereby transferred.
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    38
"
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    39
! !
11884
cb5786ab8410 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
20437
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    41
!ClassBuildError class methodsFor:'testing'!
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    42
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    43
isProgramError
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    44
    "redefined in all exceptions which are programmer's errors,
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    45
     and which should probably not be ignored.
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    46
     I.e. a global error handler should reject and let a debugger get control."
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    47
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    48
    ^ true
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    49
! !
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    50
11884
cb5786ab8410 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
!ClassBuildError class methodsFor:'documentation'!
cb5786ab8410 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
cb5786ab8410 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
version
20437
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    54
    ^ '$Header$'
12046
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    55
!
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    56
920766250c40 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 11884
diff changeset
    57
version_CVS
20437
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    58
    ^ '$Header$'
11884
cb5786ab8410 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
! !
20437
f36b7fbeea41 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 12046
diff changeset
    60