Overview
Comment: | Adjust exceptions to ObjFW API change. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
81c23094bc5797e26939e351b6ab6b37 |
User & Date: | js on 2013-11-22 20:15:54 |
Other Links: | manifest | tags |
Context
2014-02-03
| ||
17:31 | Adapt to ObjFW changes check-in: d92685efee user: florob@babelmonkeys.de tags: trunk | |
2013-11-22
| ||
20:15 | Adjust exceptions to ObjFW API change. check-in: 81c23094bc user: js tags: trunk | |
2013-06-23
| ||
11:10 | Adjust to reworked exception API. check-in: 93fb0bd595 user: js tags: trunk | |
Changes
Modified src/SSLInvalidCertificateException.h from [eb1ea7f340] to [62fcaa9a42].
︙ | ︙ | |||
26 27 28 29 30 31 32 | @interface SSLInvalidCertificateException: OFException { OFString *_reason; } #ifdef OF_HAVE_PROPERTIES | | | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | @interface SSLInvalidCertificateException: OFException { OFString *_reason; } #ifdef OF_HAVE_PROPERTIES @property (readonly, copy) OFString *reason; #endif + exceptionWithReason: (OFString*)reason; - initWithReason: (OFString*)reason; - (OFString*)reason; @end |
Modified src/SSLInvalidCertificateException.m from [f22e54e351] to [6fabfe1bec].
︙ | ︙ | |||
70 71 72 73 74 75 76 | { return [OFString stringWithFormat: @"Invalid certificate! Reason: %@", _reason]; } - (OFString*)reason { | | | 70 71 72 73 74 75 76 77 78 79 | { return [OFString stringWithFormat: @"Invalid certificate! Reason: %@", _reason]; } - (OFString*)reason { OF_GETTER(_reason, true) } @end |