From: Florian Zeitz Date: Sun, 10 Feb 2013 22:41:39 +0000 (+0100) Subject: Implement connection:didThrowException: X-Git-Url: http://cgit.babelmonkeys.de/?p=jubjub.git;a=commitdiff_plain;h=c70b5e32286f1db6348213adba76209ff1404f33 Implement connection:didThrowException: --- diff --git a/src/core/main.m b/src/core/main.m index 659414b..229e6c5 100644 --- a/src/core/main.m +++ b/src/core/main.m @@ -41,4 +41,10 @@ OF_APPLICATION_DELEGATE(AppDelegate) { of_log(@"Out: %@", element); } + +- (void)connection: (XMPPConnection*)connection_ + didThrowException: (id)e +{ + @throw e; +} @end