InvalidPatchError.st
author Claus Gittinger <cg@exept.de>
Tue, 09 Jul 2019 20:55:17 +0200
changeset 24417 03b083548da2
parent 13271 666bc1612929
child 18011 deb0c3355881
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:
13271
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     1
"
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2011 by eXept Software AG
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     4
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    10
 hereby transferred.
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    11
"
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    13
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    14
ProceedableError subclass:#InvalidPatchError
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    18
	category:'Kernel-Exceptions-Errors'
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    19
!
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    20
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    21
!InvalidPatchError class methodsFor:'documentation'!
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    22
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    23
copyright
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    24
"
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2011 by eXept Software AG
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    27
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    33
 hereby transferred.
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    34
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    35
"
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    36
!
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    37
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    38
documentation
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    39
"
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    40
    Patch could not be loaded.
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    41
    The reason is passed in the message string
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    42
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    43
    [author:]
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    44
        Stefan Vogel
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    45
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    46
    [instance variables:]
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    47
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    48
    [class variables:]
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    49
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    50
    [see also:]
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    51
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    52
"
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    53
! !
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    54
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    55
!InvalidPatchError class methodsFor:'initialization'!
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    56
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    57
initialize
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    58
    NotifierString := 'Cannot load patch'.
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    59
! !
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    60
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    61
!InvalidPatchError class methodsFor:'documentation'!
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    62
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    63
version_CVS
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    64
    ^ '$Header: /cvs/stx/stx/libbasic/InvalidPatchError.st,v 1.1 2011-02-03 11:49:27 stefan Exp $'
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    65
! !
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    66
666bc1612929 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    67
InvalidPatchError initialize!