25
26
27
28
29
30
31
32
33
34
35
36
|
#import <ObjFW/OFException.h>
@interface SSLInvalidCertificateException: OFException
{
OFString *_reason;
}
@property (readonly, copy) OFString *reason;
+ exceptionWithReason: (OFString*)reason;
- initWithReason: (OFString*)reason;
@end
|
|
|
|
|
25
26
27
28
29
30
31
32
33
34
35
36
|
#import <ObjFW/OFException.h>
@interface SSLInvalidCertificateException: OFException
{
OFString *_reason;
}
@property (readonly, nonatomic) OFString *reason;
+ exceptionWithReason: (OFString *)reason;
- initWithReason: (OFString *)reason;
@end
|