28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
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;
- initWithConnection: (PGConnection *)connection
command: (OFString *)command;
- (instancetype)initWithConnection: (PGConnection *)connection
command: (OFString *)command
OF_DESIGNATED_INITIALIZER;
@end
OF_ASSUME_NONNULL_END
|