ObjPgSQL  Diff

Differences From Artifact [c0757cbfd8]:

To Artifact [aa497f3805]:


1


2
3
4
5
6
7
8

9
10
11
12
13




14


1
2
3
4
5
6
7
8
9

10
11




12
13
14
15
16
17
18

+
+






-
+

-
-
-
-
+
+
+
+

+
+
#import "PGException.h"

OF_ASSUME_NONNULL_BEGIN

@interface PGCommandFailedException: PGException
{
	OFString *_command;
}

@property (readonly, copy) OFString *command;
@property (readonly, nonatomic) OFString *command;

+ (instancetype)exceptionWithConnection: (PGConnection*)connection
				command: (OFString*)command;
- initWithConnection: (PGConnection*)connection
	     command: (OFString*)command;
+ (instancetype)exceptionWithConnection: (PGConnection *)connection
				command: (OFString *)command;
- initWithConnection: (PGConnection *)connection
	     command: (OFString *)command;
@end

OF_ASSUME_NONNULL_END