Change exception raised by a couple of methods.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2894 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1998-08-01 21:40:50 +00:00
parent 66f5d6348e
commit 986d48c896

View file

@ -115,13 +115,13 @@ static Class NSCountedSet_concrete_class;
- initWithCoder: aCoder
{
[self notImplemented:_cmd];
return self;
[self subclassResponsibility:_cmd];
return nil;
}
- (void) encodeWithCoder: aCoder
{
[self notImplemented:_cmd];
[self subclassResponsibility:_cmd];
}
@end