TimeoutError.st
changeset 8483 3e76a8fe740a
parent 7586 63e4900c8931
child 17711 39faaaf888b4
child 20265 264c329000a5
equal deleted inserted replaced
8482:6ca4f0d2594d 8483:3e76a8fe740a
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
    12 
    13 "{ Package: 'stx:libbasic' }"
    13 "{ Package: 'stx:libbasic' }"
    14 
    14 
    15 Error subclass:#TimeoutError
    15 ProceedableError subclass:#TimeoutError
    16 	instanceVariableNames:''
    16 	instanceVariableNames:''
    17 	classVariableNames:''
    17 	classVariableNames:''
    18 	poolDictionaries:''
    18 	poolDictionaries:''
    19 	category:'Kernel-Exceptions-Errors'
    19 	category:'Kernel-Exceptions-Errors'
    20 !
    20 !
    35 "
    35 "
    36 !
    36 !
    37 
    37 
    38 documentation
    38 documentation
    39 "
    39 "
    40     TimeoutError may be raised, when a timeout on some operation occures.
    40     TimeoutError may be raised, when a timeout on some operation occurs.
    41     It is recommended to perform the operation in a while-loop, and to raise the
    41     It is recommended to perform the operation in a while-loop, and to raise the
    42     exception proceedable, in order to retry the operation or wait
    42     exception proceedable, in order to retry the operation or wait
    43     by proceeding the exception.
    43     by proceeding the exception.
    44 
    44 
    45     [author:]
    45     [author:]
    62     "
    62     "
    63 
    63 
    64 
    64 
    65 ! !
    65 ! !
    66 
    66 
    67 !TimeoutError class methodsFor:'queries'!
       
    68 
       
    69 mayProceed
       
    70 
       
    71     ^ true
       
    72 
       
    73 
       
    74 
       
    75 ! !
       
    76 
       
    77 !TimeoutError class methodsFor:'documentation'!
    67 !TimeoutError class methodsFor:'documentation'!
    78 
    68 
    79 version
    69 version
    80     ^ '$Header: /cvs/stx/stx/libbasic/TimeoutError.st,v 1.4 2003-08-29 19:15:07 cg Exp $'
    70     ^ '$Header: /cvs/stx/stx/libbasic/TimeoutError.st,v 1.5 2004-08-22 17:47:07 stefan Exp $'
    81 ! !
    71 ! !
    82 
    72 
    83 TimeoutError initialize!
    73 TimeoutError initialize!