43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
+ (instancetype)exceptionWithPath: (OFString*)path;
/*!
* @brief Creates a new, autoreleased stat item failed exception.
*
* @param path A string with the path of the item whose status could not be
* retrieved
* @param errNo The errno of the error
* @return A new, autoreleased stat item failed exception
*/
+ (instancetype)exceptionWithPath: (OFString*)path
errNo: (int)errNo;
/*!
* @brief Initializes an already allocated stat item failed exception.
*
* @param path A string with the path of the item whose status could not be
* retrieved
* @return An initialized stat item failed exception
*/
- initWithPath: (OFString*)path;
/*!
* @brief Initializes an already allocated stat item failed exception.
*
* @param path A string with the path of the item whose status could not be
* retrieved
* @param errNo The errno of the error
* @return An initialized stat item failed exception
*/
- initWithPath: (OFString*)path
errNo: (int)errNo;
/*!
* @brief Returns a string with the path of the item whose status could not be
* retrieved.
*
* @return A string with the path of the item whose status could not be
* retrieved
*/
- (OFString*)path;
/*!
* @brief Returns the errno from when the exception was created.
*
* @return The errno from when the exception was created
*/
- (int)errNo;
@end
|
|
|
|
|
|
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
+ (instancetype)exceptionWithPath: (OFString*)path;
/*!
* @brief Creates a new, autoreleased stat item failed exception.
*
* @param path A string with the path of the item whose status could not be
* retrieved
* @param errNo The errno of the error that occurred
* @return A new, autoreleased stat item failed exception
*/
+ (instancetype)exceptionWithPath: (OFString*)path
errNo: (int)errNo;
/*!
* @brief Initializes an already allocated stat item failed exception.
*
* @param path A string with the path of the item whose status could not be
* retrieved
* @return An initialized stat item failed exception
*/
- initWithPath: (OFString*)path;
/*!
* @brief Initializes an already allocated stat item failed exception.
*
* @param path A string with the path of the item whose status could not be
* retrieved
* @param errNo The errno of the error that occurred
* @return An initialized stat item failed exception
*/
- initWithPath: (OFString*)path
errNo: (int)errNo;
/*!
* @brief Returns a string with the path of the item whose status could not be
* retrieved.
*
* @return A string with the path of the item whose status could not be
* retrieved
*/
- (OFString*)path;
/*!
* @brief Returns the errno of the error that occurred.
*
* @return The errno of the error that occurred
*/
- (int)errNo;
@end
|