ObjPgSQL  PGException.h at [9b7427552b]

File exceptions/PGException.h artifact 6469b1300a part of check-in 9b7427552b


#import <ObjFW/ObjFW.h>

#import "../PGConnection.h"

@interface PGException: OFException
{
	PGConnection *connection;
}

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

+ exceptionWithClass: (Class)class_
	  connection: (PGConnection*)connection;
- initWithClass: (Class)class_
     connection: (PGConnection*)connection;
- (PGConnection*)connection;
@end