From 04efdeed9384c3b733fbc3206162e6cc30247bed Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Sat, 21 Feb 2009 09:18:54 +0000 Subject: [PATCH] Fix exception used for unimplemented methods. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27937 72102866-910b-0410-8b05-ffd578937521 --- Source/Additions/GSCategories.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Additions/GSCategories.m b/Source/Additions/GSCategories.m index 71ad93d63..337a6f413 100644 --- a/Source/Additions/GSCategories.m +++ b/Source/Additions/GSCategories.m @@ -1052,7 +1052,7 @@ strerror_r(int eno, char *buf, int len) - (id) notImplemented: (SEL)aSel { [NSException - raise: NSGenericException + raise: NSInvalidArgumentException format: @"method %s not implemented in %s(%s)", aSel ? GSNameFromSelector(aSel) : "(null)", GSClassNameFromObject(self),