22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
* OFWriteFailedException.h ObjFW/OFWriteFailedException.h
*
* @brief An exception indicating that writing to an object failed.
*/
@interface OFWriteFailedException: OFReadOrWriteFailedException
{
size_t _bytesWritten;
}
/**
* @brief The number of bytes already written before the write failed.
*
* This can be used to make sure that a retry does not write data already
* written before.
|
>
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
* OFWriteFailedException.h ObjFW/OFWriteFailedException.h
*
* @brief An exception indicating that writing to an object failed.
*/
@interface OFWriteFailedException: OFReadOrWriteFailedException
{
size_t _bytesWritten;
OF_RESERVE_IVARS(OFWriteFailedException, 4)
}
/**
* @brief The number of bytes already written before the write failed.
*
* This can be used to make sure that a retry does not write data already
* written before.
|