35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
* The path of the directory which couldn't be created.
*/
@property (readonly, nonatomic) OFString *path;
/*!
* The errno of the error that occurred.
*/
@property (readonly) int errNo;
+ (instancetype)exception OF_UNAVAILABLE;
/*!
* @brief Creates a new, autoreleased create directory failed exception.
*
* @param path A string with the path of the directory which could not be
|
|
|
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
* The path of the directory which couldn't be created.
*/
@property (readonly, nonatomic) OFString *path;
/*!
* The errno of the error that occurred.
*/
@property (readonly, nonatomic) int errNo;
+ (instancetype)exception OF_UNAVAILABLE;
/*!
* @brief Creates a new, autoreleased create directory failed exception.
*
* @param path A string with the path of the directory which could not be
|