PackageNotCompatibleError.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 22 Sep 2015 16:28:42 +0100
branchjv
changeset 18759 c1217211909c
parent 17086 c2e8c7553797
child 23792 6b5eec667516
permissions -rw-r--r--
Changed identification strings to contain jv-branch ...to make explicit that this distribution is not the official one used by eXept and therefore that eXept is not to be blamed in case of any problem.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17086
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2014 by eXept Software AG
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
PackageNotFoundError subclass:#PackageNotCompatibleError
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Kernel-Exceptions-Errors'
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!PackageNotCompatibleError class methodsFor:'initialization'!
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
copyright
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
"
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
 COPYRIGHT (c) 2014 by eXept Software AG
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
              All Rights Reserved
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 This software is furnished under a license and may be used
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 only in accordance with the terms of that license and with the
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 be provided or otherwise made available to, or used by, any
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 other person.  No title to or ownership of the software is
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 hereby transferred.
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
"
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
!
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
documentation
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
"
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    raised when a package is not compatible with this platform/machine.
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    There are not many, for which this is raised; one example is OLE, COM,
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    which are only supported for windows systems.
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
"
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
!
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
initialize
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
    NotifierString := 'Package is not compatible with this platform'.
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
! !
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
!PackageNotCompatibleError class methodsFor:'documentation'!
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
version
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    ^ '$Header: /cvs/stx/stx/libbasic/PackageNotCompatibleError.st,v 1.1 2014-11-20 00:11:55 cg Exp $'
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
!
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
version_CVS
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
    ^ '$Header: /cvs/stx/stx/libbasic/PackageNotCompatibleError.st,v 1.1 2014-11-20 00:11:55 cg Exp $'
c2e8c7553797 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
! !
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
PackageNotCompatibleError initialize!