ObjFW  Diff

Differences From Artifact [8b0f535fb4]:

To Artifact [1a0c97097c]:


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
55

56
57
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

55
56
57







-
+

-
+

-
+







-
+



-
+






-
+








-
+



#include "config.h"

#import "OFHashAlreadyCalculatedException.h"
#import "OFString.h"

@implementation OFHashAlreadyCalculatedException
@synthesize hashObject = _hashObject;
@synthesize object = _object;

+ (instancetype)exceptionWithHash: (id <OFHash>)hash
+ (instancetype)exceptionWithObject: (id <OFCryptoHash>)object
{
	return [[[self alloc] initWithHash: hash] autorelease];
	return [[[self alloc] initWithObject: object] autorelease];
}

- init
{
	OF_INVALID_INIT_METHOD
}

- initWithHash: (id <OFHash>)hashObject
- initWithObject: (id <OFCryptoHash>)object
{
	self = [super init];

	_hashObject = [hashObject retain];
	_object = [object retain];

	return self;
}

- (void)dealloc
{
	[_hashObject release];
	[_object release];

	[super dealloc];
}

- (OFString*)description
{
	return [OFString stringWithFormat:
	    @"The hash of type %@ has already been calculated and thus no new "
	    @"data can be added!", [_hashObject class]];
	    @"data can be added!", [_object class]];
}
@end