aboutsummaryrefslogtreecommitdiffstats
path: root/NSException+LiDebugging.m
blob: a4addd491c26b05a4c6fcd81236185cbff6e3f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  NSException+LiDebugging.m
//  Liaison
//
//  Created by Brian Cully on Sun Sep 14 2003.
//  Copyright (c) 2003 Brian Cully. All rights reserved.
//

@interface LiException : NSException
@end

@implementation LiException
+ (void)load
{
    [self poseAsClass: [NSException class]];
}

- (void)raise
{
    [super raise];
}
@end