ObjFW
Loading...
Searching...
No Matches
OFSetItemAttributesFailedException.h
1/*
2 * Copyright (c) 2008-2024 Jonathan Schleifer <js@nil.im>
3 *
4 * All rights reserved.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License version 3.0 only,
8 * as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13 * version 3.0 for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public License
16 * version 3.0 along with this program. If not, see
17 * <https://www.gnu.org/licenses/>.
18 */
19
20#import "OFException.h"
21#import "OFIRIHandler.h"
22
23OF_ASSUME_NONNULL_BEGIN
24
25@class OFIRI;
26
35{
36 OFIRI *_IRI;
37 OFFileAttributes _attributes;
38 OFFileAttributeKey _failedAttribute;
39 int _errNo;
40 OF_RESERVE_IVARS(OFSetItemAttributesFailedException, 4)
41}
42
46@property (readonly, nonatomic) OFIRI *IRI;
47
51@property (readonly, nonatomic) int errNo;
52
56@property (readonly, nonatomic) OFFileAttributes attributes;
57
61@property (readonly, nonatomic) OFFileAttributeKey failedAttribute;
62
73+ (instancetype)exceptionWithIRI: (OFIRI *)IRI
74 attributes: (OFFileAttributes)attributes
75 failedAttribute: (OFFileAttributeKey)failedAttribute
76 errNo: (int)errNo;
77
78+ (instancetype)exception OF_UNAVAILABLE;
79
90- (instancetype)initWithIRI: (OFIRI *)IRI
91 attributes: (OFFileAttributes)attributes
92 failedAttribute: (OFFileAttributeKey)failedAttribute
93 errNo: (int)errNo OF_DESIGNATED_INITIALIZER;
94
95- (instancetype)init OF_UNAVAILABLE;
96@end
97
98OF_ASSUME_NONNULL_END
A class for storing constant strings using the @"" literal.
Definition OFConstantString.h:42
An abstract class for storing objects in a dictionary.
Definition OFDictionary.h:84
The base class for all exceptions in ObjFW.
Definition OFException.h:157
A class for representing IRIs, URIs, URLs and URNs, for parsing them as well as accessing parts of th...
Definition OFIRI.h:41
An exception indicating an item's attributes could not be set.
Definition OFSetItemAttributesFailedException.h:35