InvalidPatchError.st
branchjv
changeset 17834 04ff72c5039a
child 17841 7abcc4aef871
equal deleted inserted replaced
17833:1602a49e146e 17834:04ff72c5039a
       
     1 "
       
     2  COPYRIGHT (c) 2011 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 "
       
    12 "{ Package: 'stx:libbasic' }"
       
    13 
       
    14 ProceedableError subclass:#InvalidPatchError
       
    15 	instanceVariableNames:''
       
    16 	classVariableNames:''
       
    17 	poolDictionaries:''
       
    18 	category:'Kernel-Exceptions-Errors'
       
    19 !
       
    20 
       
    21 !InvalidPatchError class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 2011 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 
       
    38 documentation
       
    39 "
       
    40     Patch could not be loaded.
       
    41     The reason is passed in the message string
       
    42 
       
    43     [author:]
       
    44         Stefan Vogel
       
    45 
       
    46     [instance variables:]
       
    47 
       
    48     [class variables:]
       
    49 
       
    50     [see also:]
       
    51 
       
    52 "
       
    53 ! !
       
    54 
       
    55 !InvalidPatchError class methodsFor:'initialization'!
       
    56 
       
    57 initialize
       
    58     NotifierString := 'Cannot load patch'.
       
    59 ! !
       
    60 
       
    61 !InvalidPatchError class methodsFor:'documentation'!
       
    62 
       
    63 version_CVS
       
    64     ^ '§Header: /var/local/cvs/stx/libbasic/InvalidPatchError.st,v 1.1 2011-02-03 11:49:27 stefan Exp §'
       
    65 ! !
       
    66 
       
    67 InvalidPatchError initialize!