summaryrefslogtreecommitdiff
path: root/swift/src/IceImpl/Exception.mm
blob: d63b1e4ce0f28031baf2e216a6bb9d8a342e03d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
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
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

#import "Exception.h"

@implementation ICERuntimeException
@synthesize file;
@synthesize line;
@end

@implementation ICERequestFailedException
@synthesize name;
@synthesize category;
@synthesize facet;
@synthesize operation;
@end

@implementation ICEObjectNotExistException
@end

@implementation ICEFacetNotExistException
@end

@implementation ICEOperationNotExistException
@end

@implementation ICEUnknownException
@synthesize unknown;
@end

@implementation ICEUnknownLocalException
@end

@implementation ICEUnknownUserException
@end