File src/exceptions/PGException.h artifact f5eecc1954 part of check-in b80a03bd2f
#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