ObjFW  Diff

Differences From Artifact [9ed6a2db34]:

To Artifact [52c201d27f]:


1970
1971
1972
1973
1974
1975
1976














}

- (short)statusCode
{
	return statusCode;
}
@end





















>
>
>
>
>
>
>
>
>
>
>
>
>
>
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
}

- (short)statusCode
{
	return statusCode;
}
@end

@implementation OFTruncatedDataException
- (OFString*)description
{
	if (description != nil)
		return description;

	description = [[OFString alloc] initWithFormat:
	    @"Truncated data was received or produced in class %s while it "
	    @"should not have been truncated!", class_getName(inClass)];

	return description;
}
@end