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