summaryrefslogtreecommitdiffstats
path: root/Liaison/NSException+LiDebugging.m
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2008-04-14 21:45:08 -0400
committerBrian Cully <github.20.shmit@spamgourmet.com>2008-04-14 21:45:08 -0400
commit17349a5e426dc7acf1216a3767a22f69974cbca0 (patch)
tree20029d02f07ab6257cccec36d34fb312f796e1d1 /Liaison/NSException+LiDebugging.m
downloadliaison-17349a5e426dc7acf1216a3767a22f69974cbca0.tar.gz
liaison-17349a5e426dc7acf1216a3767a22f69974cbca0.zip
Initial commit.
Diffstat (limited to 'Liaison/NSException+LiDebugging.m')
-rw-r--r--Liaison/NSException+LiDebugging.m23
1 files changed, 23 insertions, 0 deletions
diff --git a/Liaison/NSException+LiDebugging.m b/Liaison/NSException+LiDebugging.m
new file mode 100644
index 0000000..4dc0067
--- /dev/null
+++ b/Liaison/NSException+LiDebugging.m
@@ -0,0 +1,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