36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
* The stream which caused the read or write failed exception.
*/
@property (readonly, nonatomic) id object;
/*!
* The requested length of the data that could not be read / written.
*/
@property (readonly) size_t requestedLength;
/*!
* The errno of the error that occurred.
*/
@property (readonly) int errNo;
+ (instancetype)exception OF_UNAVAILABLE;
/*!
* @brief Creates a new, autoreleased read or write failed exception.
*
* @param object The object from which reading or to which writing failed
|
|
|
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
* The stream which caused the read or write failed exception.
*/
@property (readonly, nonatomic) id object;
/*!
* The requested length of the data that could not be read / written.
*/
@property (readonly, nonatomic) size_t requestedLength;
/*!
* The errno of the error that occurred.
*/
@property (readonly, nonatomic) int errNo;
+ (instancetype)exception OF_UNAVAILABLE;
/*!
* @brief Creates a new, autoreleased read or write failed exception.
*
* @param object The object from which reading or to which writing failed
|