ObjOpenSSL  Check-in [2c5d1c7324]

Overview
Comment:Fix properties in exceptions.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2c5d1c7324a415f476d772375dadf96adfbb7be17f8393f713b4ea31935ce701
User & Date: js on 2012-02-01 13:50:00
Other Links: manifest | tags
Context
2012-02-05
15:08
Make it possible to use a different objfw-config/objfw-compile. check-in: 4f5b4ced1c user: js tags: trunk
2012-02-01
13:50
Fix properties in exceptions. check-in: 2c5d1c7324 user: js tags: trunk
2012-01-26
12:26
Clean up Xcode project. check-in: 30583e2141 user: js tags: trunk
Changes

Modified src/SSLInvalidCertificateException.h from [6ee3f9f04b] to [5a555eb0db].

25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

@interface SSLInvalidCertificateException: OFException
{
	OFString *reason;
}

#ifdef OF_HAVE_PROPERTIES
@property (readonly, nonatomic) OFString *reason;
#endif

+ exceptionWithClass: (Class)class
	      reason: (OFString*)reason;
- initWithClass: (Class)class
	 reason: (OFString*)reason;
- (OFString*)reason;
@end







|








25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

@interface SSLInvalidCertificateException: OFException
{
	OFString *reason;
}

#ifdef OF_HAVE_PROPERTIES
@property (readonly, assign) OFString *reason;
#endif

+ exceptionWithClass: (Class)class
	      reason: (OFString*)reason;
- initWithClass: (Class)class
	 reason: (OFString*)reason;
- (OFString*)reason;
@end