28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
-
+
-
+
|
#import <ObjFW/OFMalformedXMLException.h>
@implementation XMPPXMLElementBuilder
- (void)parser: (OFXMLParser*)parser
foundProcessingInstructions: (OFString*)pi
{
@throw [OFMalformedXMLException exceptionWithClass: [self class]];
@throw [OFMalformedXMLException exception];
}
- (void)parser: (OFXMLParser*)parser
foundComment: (OFString*)comment
{
@throw [OFMalformedXMLException exceptionWithClass: [self class]];
@throw [OFMalformedXMLException exception];
}
@end
|