28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
@interface PGCommandFailedException: PGException
{
OFString *_command;
}
@property (readonly, nonatomic) OFString *command;
+ (instancetype)exceptionWithConnection: (PGConnection *)connection
command: (OFString *)command;
- initWithConnection: (PGConnection *)connection
command: (OFString *)command;
@end
OF_ASSUME_NONNULL_END
|
>
>
>
|
|
>
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
@interface PGCommandFailedException: PGException
{
OFString *_command;
}
@property (readonly, nonatomic) OFString *command;
+ (instancetype)exceptionWithConnection: (PGConnection *)connection
OF_UNAVAILABLE;
+ (instancetype)exceptionWithConnection: (PGConnection *)connection
command: (OFString *)command;
- (instancetype)initWithConnection: (PGConnection *)connection OF_UNAVAILABLE;
- (instancetype)initWithConnection: (PGConnection *)connection
command: (OFString *)command
OF_DESIGNATED_INITIALIZER;
@end
OF_ASSUME_NONNULL_END
|