Error.st
changeset 12089 0b9f77ad54a0
parent 8486 381dfb0749b6
child 13133 ebdaac05b6ed
equal deleted inserted replaced
12088:1300308ff1c4 12089:0b9f77ad54a0
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 
       
    14 "{ Package: 'stx:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
    15 
    13 
    16 Exception subclass:#Error
    14 Exception subclass:#Error
    17 	instanceVariableNames:''
    15 	instanceVariableNames:''
    18 	classVariableNames:''
    16 	classVariableNames:''
    56     NotifierString := 'error encountered'.
    54     NotifierString := 'error encountered'.
    57 
    55 
    58     "Created: / 4.8.1999 / 08:48:18 / stefan"
    56     "Created: / 4.8.1999 / 08:48:18 / stefan"
    59 ! !
    57 ! !
    60 
    58 
       
    59 !Error class methodsFor:'misc ui support'!
       
    60 
       
    61 iconInBrowserSymbol
       
    62     <resource: #programImage>
       
    63 
       
    64     ^ #errorClassBrowserIcon
       
    65 ! !
       
    66 
    61 !Error class methodsFor:'queries'!
    67 !Error class methodsFor:'queries'!
    62 
    68 
    63 mayProceed
    69 mayProceed
    64     "By default, errors do not allow to proceed.
    70     "By default, errors do not allow to proceed.
    65      Subclasses may change this"
    71      Subclasses may change this"
    77 ! !
    83 ! !
    78 
    84 
    79 !Error class methodsFor:'documentation'!
    85 !Error class methodsFor:'documentation'!
    80 
    86 
    81 version
    87 version
    82     ^ '$Header: /cvs/stx/stx/libbasic/Error.st,v 1.9 2004-08-22 17:58:58 stefan Exp $'
    88     ^ '$Header: /cvs/stx/stx/libbasic/Error.st,v 1.10 2009-10-01 13:44:07 cg Exp $'
       
    89 !
       
    90 
       
    91 version_CVS
       
    92     ^ '$Header: /cvs/stx/stx/libbasic/Error.st,v 1.10 2009-10-01 13:44:07 cg Exp $'
    83 ! !
    93 ! !
    84 
    94 
    85 Error initialize!
    95 Error initialize!