PackageLoadError.st
changeset 17084 d281e1e7bb3e
parent 16135 5e404aaa931b
equal deleted inserted replaced
17083:38bc33e2583b 17084:d281e1e7bb3e
       
     1 "
       
     2  COPYRIGHT (c) 2014 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     1 "{ Package: 'stx:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
     2 
    13 
     3 ProceedableError subclass:#PackageLoadError
    14 ProceedableError subclass:#PackageLoadError
     4 	instanceVariableNames:''
    15 	instanceVariableNames:''
     5 	classVariableNames:''
    16 	classVariableNames:''
     6 	poolDictionaries:''
    17 	poolDictionaries:''
     7 	category:'Kernel-Exceptions-Errors'
    18 	category:'Kernel-Exceptions-Errors'
     8 !
    19 !
     9 
    20 
       
    21 !PackageLoadError class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 2014 by eXept Software AG
       
    26               All Rights Reserved
       
    27 
       
    28  This software is furnished under a license and may be used
       
    29  only in accordance with the terms of that license and with the
       
    30  inclusion of the above copyright notice.   This software may not
       
    31  be provided or otherwise made available to, or used by, any
       
    32  other person.  No title to or ownership of the software is
       
    33  hereby transferred.
       
    34 "
       
    35 !
       
    36 
       
    37 documentation
       
    38 "
       
    39     Superclass of all package load errors
       
    40 "
       
    41 ! !
    10 
    42 
    11 !PackageLoadError class methodsFor:'initialization'!
    43 !PackageLoadError class methodsFor:'initialization'!
    12 
    44 
    13 initialize
    45 initialize
    14     NotifierString := 'Package load failed'.
    46     NotifierString := 'Package load failed'.
    21 ! !
    53 ! !
    22 
    54 
    23 !PackageLoadError class methodsFor:'documentation'!
    55 !PackageLoadError class methodsFor:'documentation'!
    24 
    56 
    25 version
    57 version
    26     ^ '$Header: /cvs/stx/stx/libbasic/PackageLoadError.st,v 1.1 2014-02-25 13:23:08 stefan Exp $'
    58     ^ '$Header: /cvs/stx/stx/libbasic/PackageLoadError.st,v 1.2 2014-11-20 00:11:08 cg Exp $'
    27 !
    59 !
    28 
    60 
    29 version_CVS
    61 version_CVS
    30     ^ '$Header: /cvs/stx/stx/libbasic/PackageLoadError.st,v 1.1 2014-02-25 13:23:08 stefan Exp $'
    62     ^ '$Header: /cvs/stx/stx/libbasic/PackageLoadError.st,v 1.2 2014-11-20 00:11:08 cg Exp $'
    31 ! !
    63 ! !
    32 
    64 
    33 
    65 
    34 PackageLoadError initialize!
    66 PackageLoadError initialize!