PackageNotCompatibleError.st
author Claus Gittinger <cg@exept.de>
Tue, 09 Jul 2019 20:55:17 +0200
changeset 24417 03b083548da2
parent 23792 6b5eec667516
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:
23792
6b5eec667516 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17086
diff changeset
     1
"{ Encoding: utf8 }"
6b5eec667516 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17086
diff changeset
     2
17086
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
"
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
 COPYRIGHT (c) 2014 by eXept Software AG
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
              All Rights Reserved
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 This software is furnished under a license and may be used
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
 hereby transferred.
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ Package: 'stx:libbasic' }"
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
23792
6b5eec667516 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17086
diff changeset
    16
"{ NameSpace: Smalltalk }"
6b5eec667516 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17086
diff changeset
    17
17086
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
PackageNotFoundError subclass:#PackageNotCompatibleError
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	instanceVariableNames:''
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	classVariableNames:''
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	poolDictionaries:''
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
	category:'Kernel-Exceptions-Errors'
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
23792
6b5eec667516 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17086
diff changeset
    25
!PackageNotCompatibleError class methodsFor:'documentation'!
17086
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
copyright
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
"
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 COPYRIGHT (c) 2014 by eXept Software AG
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
              All Rights Reserved
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 This software is furnished under a license and may be used
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 only in accordance with the terms of that license and with the
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 be provided or otherwise made available to, or used by, any
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
 other person.  No title to or ownership of the software is
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
 hereby transferred.
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
!
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
documentation
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
"
23792
6b5eec667516 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17086
diff changeset
    43
    raised when a loaded package is not compatible with this platform/machine.
6b5eec667516 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17086
diff changeset
    44
    There are not many, for which this is raised; 
6b5eec667516 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17086
diff changeset
    45
    examples are OLE, COM, which are only supported for Windows systems.
17086
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
"
23792
6b5eec667516 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17086
diff changeset
    47
! !
6b5eec667516 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17086
diff changeset
    48
6b5eec667516 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17086
diff changeset
    49
!PackageNotCompatibleError class methodsFor:'initialization'!
17086
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
initialize
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
    NotifierString := 'Package is not compatible with this platform'.
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
! !
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
!PackageNotCompatibleError class methodsFor:'documentation'!
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
version
23792
6b5eec667516 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17086
diff changeset
    58
    ^ '$Header$'
17086
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
!
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
version_CVS
23792
6b5eec667516 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17086
diff changeset
    62
    ^ '$Header$'
17086
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
! !
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
PackageNotCompatibleError initialize!