ObjPgSQL  Diff

Differences From Artifact [4d78dea5a5]:

To Artifact [c0757cbfd8]:


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

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







<
|
<





<

1
2
3
4
5
6
7

8

9
10
11
12
13

14
#import "PGException.h"

@interface PGCommandFailedException: PGException
{
	OFString *_command;
}


@property (readonly, copy) OFString *command;


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

@end