18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#import "OFInvalidEncodingException.h"
#import "OFString.h"
@implementation OFInvalidEncodingException
- (OFString*)description
{
if (description != nil)
return description;
description = [[OFString alloc] initWithFormat:
@"The encoding is invalid for class %@!", inClass];
return description;
}
@end
|
|
|
|
|
|
|
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#import "OFInvalidEncodingException.h"
#import "OFString.h"
@implementation OFInvalidEncodingException
- (OFString*)description
{
if (_description != nil)
return _description;
_description = [[OFString alloc] initWithFormat:
@"The encoding is invalid for class %@!", _inClass];
return _description;
}
@end
|