ObjPgSQL  Diff

Differences From Artifact [9572250036]:

To Artifact [f5eecc1954]:


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

13
14
15
16
17
18
1
2
3
4
5
6
7
8
9
10


11

12
13
14

15










-
-
+
-



-

#import <ObjFW/ObjFW.h>

#import "PGConnection.h"

@interface PGException: OFException
{
	PGConnection *_connection;
	OFString *_error;
}

#ifdef OF_HAVE_PROPERTIES
@property (readonly, retain, nonatomic) PGConnection *connection;
@property (readonly, retain) PGConnection *connection;
#endif

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