fix error in last change

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27938 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2009-02-21 09:21:00 +00:00
parent 04efdeed93
commit 3783bd74af

View file

@ -1052,7 +1052,7 @@ strerror_r(int eno, char *buf, int len)
- (id) notImplemented: (SEL)aSel
{
[NSException
raise: NSInvalidArgumentException
raise: NSGenericException
format: @"method %s not implemented in %s(%s)",
aSel ? GSNameFromSelector(aSel) : "(null)",
GSClassNameFromObject(self),
@ -1073,7 +1073,7 @@ strerror_r(int eno, char *buf, int len)
- (id) subclassResponsibility: (SEL)aSel
{
[NSException raise: NSGenericException
[NSException raise: NSInvalidArgumentException
format: @"subclass %s(%s) should override %s",
GSClassNameFromObject(self),
GSObjCIsInstance(self) ? "instance" : "class",