22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
* OFLoadPluginFailedException.h ObjFW/OFLoadPluginFailedException.h
*
* @brief An exception indicating a plugin could not be loaded.
*/
@interface OFLoadPluginFailedException: OFException
{
OFString *_path, *_Nullable _error;
}
/**
* @brief The path of the plugin which could not be loaded
*/
@property (readonly, nonatomic) OFString *path;
|
>
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
* OFLoadPluginFailedException.h ObjFW/OFLoadPluginFailedException.h
*
* @brief An exception indicating a plugin could not be loaded.
*/
@interface OFLoadPluginFailedException: OFException
{
OFString *_path, *_Nullable _error;
OF_RESERVE_IVARS(OFLoadPluginFailedException, 4)
}
/**
* @brief The path of the plugin which could not be loaded
*/
@property (readonly, nonatomic) OFString *path;
|