Differences From Artifact [83ae290d6c]:
- File src/exceptions/OFChangeOwnerFailedException.h — part of check-in [3b97fc3cd9] at 2014-01-04 00:24:08 on branch trunk — Update copyright. (user: js, size: 2169) [annotate] [blame] [check-ins using]
To Artifact [5587f9cda9]:
- File src/exceptions/OFChangeOwnerFailedException.h — part of check-in [246cfe0807] at 2014-02-18 18:50:30 on branch trunk — Documentation: Show correct imports (user: js, size: 2286) [annotate] [blame] [check-ins using]
| ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | + + + |
#include <errno.h>
#import "OFException.h"
#ifdef OF_HAVE_CHOWN
/*!
* @class OFChangeOwnerFailedException \
* OFChangeOwnerFailedException.h ObjFW/OFChangeOwnerFailedException.h
*
* @brief An exception indicating that changing the owner of an item failed.
*/
@interface OFChangeOwnerFailedException: OFException
{
OFString *_path, *_owner, *_group;
int _errNo;
}
|
| ︙ |