ObjPgSQL  Diff

Differences From Artifact [bd6baa8db9]:

To Artifact [4d78dea5a5]:


1
2
3
4
5
6
7
8
9
10
11
12
13
14


15
16
17


18
19
1
2
3
4
5
6
7
8
9
10
11



12
13



14
15
16
17











-
-
-
+
+
-
-
-
+
+


#import "PGException.h"

@interface PGCommandFailedException: PGException
{
	OFString *_command;
}

#ifdef OF_HAVE_PROPERTIES
@property (readonly, copy, nonatomic) OFString *command;
#endif

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