28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/**
* \brief A base class for XMPP related exceptions
*/
@interface XMPPException: OFException
{
/// \cond internal
XMPPConnection *connection;
/// \end
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The connection the exception relates to
@property (readonly, assign) XMPPConnection *connection;
#endif
|
|
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/**
* \brief A base class for XMPP related exceptions
*/
@interface XMPPException: OFException
{
/// \cond internal
XMPPConnection *connection;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The connection the exception relates to
@property (readonly, assign) XMPPConnection *connection;
#endif
|