ObjFW  Diff

Differences From Artifact [a391485837]:

To Artifact [1aff01bcf1]:


12
13
14
15
16
17
18
19
20


21
22
23

24
25

26
27

28
29
30

31
32
33
34

35
36
37
38
39
40
41

42
43
44
45
46
47
48

49
50

51
52
53
54
12
13
14
15
16
17
18


19
20
21
22

23
24

25
26

27
28
29

30
31
32
33

34
35
36
37
38
39
40

41
42
43
44
45
46
47

48
49

50
51
52
53
54







-
-
+
+


-
+

-
+

-
+


-
+



-
+






-
+






-
+

-
+




 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#include "config.h"

#import "OFUnsupportedProtocolException.h"
#import "OFString.h"
#import "OFURI.h"
#import "OFIRI.h"
#import "OFString.h"

@implementation OFUnsupportedProtocolException
@synthesize URI = _URI;
@synthesize IRI = _IRI;

+ (instancetype)exceptionWithURI: (OFURI *)URI
+ (instancetype)exceptionWithIRI: (OFIRI *)IRI
{
	return [[[self alloc] initWithURI: URI] autorelease];
	return [[[self alloc] initWithIRI: IRI] autorelease];
}

- (instancetype)initWithURI: (OFURI *)URI
- (instancetype)initWithIRI: (OFIRI *)IRI
{
	self = [super init];

	_URI = [URI retain];
	_IRI = [IRI retain];

	return self;
}

- (void)dealloc
{
	[_URI release];
	[_IRI release];

	[super dealloc];
}

- (OFString *)description
{
	if (_URI != nil)
	if (_IRI != nil)
		return [OFString stringWithFormat:
		    @"The protocol of URI %@ is not supported!", _URI];
		    @"The protocol of IRI %@ is not supported!", _IRI];
	else
		return @"The requested protocol is unsupported!";
}
@end