18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
*/
#import "OFException.h"
OF_ASSUME_NONNULL_BEGIN
/**
* @class OFReadOrWriteFailedException \
* OFReadOrWriteFailedException.h ObjFW/OFReadOrWriteFailedException.h
*
* @brief An exception indicating that reading from or writing to an object
* failed.
*/
@interface OFReadOrWriteFailedException: OFException
{
id _object;
|
|
|
|
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
*/
#import "OFException.h"
OF_ASSUME_NONNULL_BEGIN
/**
* @class OFReadOrWriteFailedException OFReadOrWriteFailedException.h
* ObjFW/ObjFW.h
*
* @brief An exception indicating that reading from or writing to an object
* failed.
*/
@interface OFReadOrWriteFailedException: OFException
{
id _object;
|