FTUnknownException


Abstract

Thrown in case of receiving an unknown exception

Discussion

if the FT receives an exception which it did not expect (e.g. through catching NSException) then it might throw instances of this class

Methods

-contextInfo
-exception
return the unknown exception
-initWithContextInfo
-initWithContextInfo:exception:

contextInfo


- (NSString *) contextInfo;
method result
a string giving a hint about the context where the unknown exception has been thrown

exception


return the unknown exception

- (NSException *) exception;
method result
exception which has been caught in the context

initWithContextInfo


See Also:
initWithContextInfo:exception:
- initWithContextInfo: (NSString *) aContextInfo exception: (NSException *) anException;
Parameter Descriptions
aContextInfo
a string giving a hint about the context where the unknown exception has been thrown
anException
an exception which has been caught in the context
method result
self

initWithContextInfo:exception:


See Also:
initWithContextInfo
- initWithContextInfo: (NSString *) aContextInfo exception: (NSException *) anException;
Parameter Descriptions
aContextInfo
a string giving a hint about the context where the unknown exception has been thrown
anException
an exception which has been caught in the context

(Last Updated August 27, 2006)