AmbiguousMessage.st
branchjv
changeset 20578 39641ba8d6e0
parent 18115 26ac4840e5d0
parent 20442 5e97637a82d9
child 23107 40173e082cbc
equal deleted inserted replaced
20577:a27e7b3031cb 20578:39641ba8d6e0
       
     1 "{ Encoding: utf8 }"
       
     2 
     1 "
     3 "
     2  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
     4  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
     3               All Rights Reserved
     5               All Rights Reserved
     4 
     6 
     5 Permission is hereby granted, free of charge, to any person
     7 Permission is hereby granted, free of charge, to any person
    23 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    25 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    24 OTHER DEALINGS IN THE SOFTWARE.
    26 OTHER DEALINGS IN THE SOFTWARE.
    25 "
    27 "
    26 "{ Package: 'stx:libbasic' }"
    28 "{ Package: 'stx:libbasic' }"
    27 
    29 
    28 ProceedableError subclass:#AmbiguousMessage
    30 "{ NameSpace: Smalltalk }"
       
    31 
       
    32 ExecutionError subclass:#AmbiguousMessage
    29 	instanceVariableNames:''
    33 	instanceVariableNames:''
    30 	classVariableNames:''
    34 	classVariableNames:''
    31 	poolDictionaries:''
    35 	poolDictionaries:''
    32 	category:'Kernel-Exceptions-ExecutionErrors'
    36 	category:'Kernel-Exceptions-ExecutionErrors'
    33 !
    37 !
    70     imports two namespaces and both define a method with the
    74     imports two namespaces and both define a method with the
    71     requested selector.
    75     requested selector.
    72 "
    76 "
    73 ! !
    77 ! !
    74 
    78 
       
    79 !AmbiguousMessage class methodsFor:'testing'!
       
    80 
       
    81 isProgramError
       
    82     "redefined in all exceptions which are programmer's errors,
       
    83      and which should probably not be ignored.
       
    84      I.e. a global error handler should reject and let a debugger get control."
       
    85 
       
    86     ^ true
       
    87 ! !
       
    88 
    75 !AmbiguousMessage class methodsFor:'documentation'!
    89 !AmbiguousMessage class methodsFor:'documentation'!
    76 
    90 
    77 version_CVS
    91 version_CVS
    78     ^ '$Header: /cvs/stx/stx/libbasic/AmbiguousMessage.st,v 1.4 2013-12-24 10:40:54 cg Exp $'
    92     ^ '$Header$'
    79 !
    93 !
    80 
    94 
    81 version_SVN
    95 version_SVN
    82     ^ '$Id: AmbiguousMessage.st,v 1.4 2013-12-24 10:40:54 cg Exp $'
    96     ^ '$Id$'
    83 ! !
    97 ! !
    84 
    98