summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/oc/50026-exceptions.m
blob: 150de09208eaa719e34948ce4ff6ca0f3181db4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

int main(int argc, const char *argv[])
{
   @try
   {
      [NSException raise: NSInternalInconsistency
                  format: @"An internal inconsistency was raised"];
   }
   @catch (NSException *e)
   {
      NSLog(@"Catch");
   }
   @finally
   {
      NSLog(@"Finally");
   }

   @throw[NSException exceptionWithName: @"foo" reason: @"bar" userInfo: nil];

   NSException *exception = [NSException exceptionWithName: @"HotTeaException"
                                                    reason: @"The tea is too hot"
                                                  userInfo: nil];

   @throw exception;

   return 0;
}