20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
-
-
+
+
|
#import "OFException.h"
OF_ASSUME_NONNULL_BEGIN
@class OFXMLElement;
/**
* @class OFUnboundNamespaceException \
* OFUnboundNamespaceException.h ObjFW/OFUnboundNamespaceException.h
* @class OFUnboundNamespaceException OFUnboundNamespaceException.h
* ObjFW/ObjFW.h
*
* @brief An exception indicating an attempt to use an unbound namespace.
*/
@interface OFUnboundNamespaceException: OFException
{
OFString *_namespace;
OFXMLElement *_element;
|