ObjPgSQL  PGException.h at [e5ac3ed936]

File src/exceptions/PGException.h artifact f5eecc1954 part of check-in e5ac3ed936


#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