Ignore:
Timestamp:
03/05/08 03:01:09 (16 years ago)
Author:
Nicholas Riley
Message:

Use @try/@catch/@finally rather than macro-based exceptions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ICeCoffEE/ICeCoffEE/ICeCoffEETerminal.m

    r388 r436  
    293293    NSRange range, delimiterRange;
    294294
    295     NS_DURING
    296 
     295    @try {
    297296        TermStorage *storage = [(TermController *)[self valueForKey: @"controller"] storage];
    298297
     
    404403            }
    405404        }
    406     NS_HANDLER
    407         ICCF_HandleException(localException, ICCF_downEvent);
    408     NS_ENDHANDLER
     405    } @catch (NSException *e) {
     406        ICCF_HandleException(e, ICCF_downEvent);
     407    }
    409408
    410409    ICCF_StopIC();
Note: See TracChangeset for help on using the changeset viewer.