16 #import "OFException.h"
17 #import "OFWindowsRegistryKey.h"
21 OF_ASSUME_NONNULL_BEGIN
32 OFWindowsRegistryKey *_registryKey;
40 @property (readonly, nonatomic) OFWindowsRegistryKey *registryKey;
50 @property (readonly, nonatomic) LSTATUS status;
61 + (instancetype)exceptionWithRegistryKey: (OFWindowsRegistryKey *)registryKey
62 valueName: (nullable
OFString *)valueName
63 status: (LSTATUS)status;
65 - (instancetype)init OF_UNAVAILABLE;
76 - (instancetype)initWithRegistryKey: (OFWindowsRegistryKey *)registryKey
77 valueName: (nullable
OFString *)valueName
78 status: (LSTATUS)status OF_DESIGNATED_INITIALIZER;
An exception indicating that deleting a Windows registry value failed.
Definition: OFDeleteWindowsRegistryValueFailedException.h:31
OFString * valueName
The name of the value which could not be deleted.
Definition: OFDeleteWindowsRegistryValueFailedException.h:45
The base class for all exceptions in ObjFW.
Definition: OFException.h:147
A class for handling strings.
Definition: OFString.h:132