15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
*/
#include <errno.h>
#import "OFException.h"
/*!
* @brief An exception indicating a file couldn't be opened.
*/
@interface OFOpenFileFailedException: OFException
{
OFString *_path, *_mode;
int _errNo;
}
|
>
>
>
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
*/
#include <errno.h>
#import "OFException.h"
/*!
* @class OFOpenFileFailedException \
* OFOpenFileFailedException.h ObjFW/OFOpenFileFailedException.h
*
* @brief An exception indicating a file couldn't be opened.
*/
@interface OFOpenFileFailedException: OFException
{
OFString *_path, *_mode;
int _errNo;
}
|