64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
- (OFString*)description
{
if (description != nil)
return description;
description = [[OFString alloc] initWithFormat:
@"Invalid certificate, Reason: %@!", reason];
return description;
}
- (OFString*)reason
{
return reason;
|
|
|
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
- (OFString*)description
{
if (description != nil)
return description;
description = [[OFString alloc] initWithFormat:
@"Invalid certificate! Reason: %@", reason];
return description;
}
- (OFString*)reason
{
return reason;
|