PackageLoadError.st
author Stefan Vogel <sv@exept.de>
Mon, 22 Jun 2015 11:33:37 +0200
branchexpecco_2_7_5_branch
changeset 18499 b132ac7c9d6a
parent 17084 d281e1e7bb3e
permissions -rw-r--r--
GLIBC 2.12 compatibility
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17084
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
     1
"
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
     2
 COPYRIGHT (c) 2014 by eXept Software AG
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
     3
              All Rights Reserved
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
     4
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
     5
 This software is furnished under a license and may be used
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
     6
 only in accordance with the terms of that license and with the
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
     8
 be provided or otherwise made available to, or used by, any
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
     9
 other person.  No title to or ownership of the software is
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    10
 hereby transferred.
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    11
"
16135
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    13
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    14
ProceedableError subclass:#PackageLoadError
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    18
	category:'Kernel-Exceptions-Errors'
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    19
!
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    20
17084
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    21
!PackageLoadError class methodsFor:'documentation'!
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    22
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    23
copyright
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    24
"
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    25
 COPYRIGHT (c) 2014 by eXept Software AG
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    26
              All Rights Reserved
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    27
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    28
 This software is furnished under a license and may be used
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    29
 only in accordance with the terms of that license and with the
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    31
 be provided or otherwise made available to, or used by, any
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    32
 other person.  No title to or ownership of the software is
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    33
 hereby transferred.
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    34
"
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    35
!
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    36
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    37
documentation
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    38
"
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    39
    Superclass of all package load errors
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    40
"
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    41
! !
16135
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    42
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    43
!PackageLoadError class methodsFor:'initialization'!
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    44
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    45
initialize
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    46
    NotifierString := 'Package load failed'.
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    47
! !
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    48
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    49
!PackageLoadError methodsFor:'printing & storing'!
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    50
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    51
description
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    52
    ^ super description, ': ''', parameter printString, ''''
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    53
! !
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    54
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    55
!PackageLoadError class methodsFor:'documentation'!
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    56
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    57
version
17084
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    58
    ^ '$Header: /cvs/stx/stx/libbasic/PackageLoadError.st,v 1.2 2014-11-20 00:11:08 cg Exp $'
16135
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    59
!
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    60
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    61
version_CVS
17084
d281e1e7bb3e class: PackageLoadError
Claus Gittinger <cg@exept.de>
parents: 16135
diff changeset
    62
    ^ '$Header: /cvs/stx/stx/libbasic/PackageLoadError.st,v 1.2 2014-11-20 00:11:08 cg Exp $'
16135
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    63
! !
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    64
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    65
5e404aaa931b initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    66
PackageLoadError initialize!