aboutsummaryrefslogtreecommitdiffstats
path: root/NSException+LiDebugging.m
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2008-04-02 19:20:20 -0400
committerBrian Cully <bjc@kublai.com>2008-04-02 19:20:20 -0400
commitab10720260e2c184b319026da89f4dfd338500bb (patch)
treea692a27435da0296972e43b21b2f35762e720bfd /NSException+LiDebugging.m
downloadmoxie-ab10720260e2c184b319026da89f4dfd338500bb.tar.gz
moxie-ab10720260e2c184b319026da89f4dfd338500bb.zip
Initial commit
Diffstat (limited to 'NSException+LiDebugging.m')
-rw-r--r--NSException+LiDebugging.m22
1 files changed, 22 insertions, 0 deletions
diff --git a/NSException+LiDebugging.m b/NSException+LiDebugging.m
new file mode 100644
index 0000000..a4addd4
--- /dev/null
+++ b/NSException+LiDebugging.m
@@ -0,0 +1,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