blob: 4dc0067136e250f19ae06ded236030c1d9897f25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// 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
{
[LiLog logAsDebug: @"Raising exception"];
[super raise];
}
@end
|