ObjPgSQL  Artifact [f5eecc1954]

Artifact f5eecc19540988f38e4fbad2fa6adcb76a287f72a36548f116d24415863d5206:

  • File src/exceptions/PGException.h — part of check-in [b80a03bd2f] at 2016-02-21 11:08:17 on branch trunk — Adjust to ObjFW changes (user: js size: 317)

#import <ObjFW/ObjFW.h>

#import "PGConnection.h"

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

@property (readonly, retain) PGConnection *connection;

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