ObjPgSQL  Artifact [4d78dea5a5]

Artifact 4d78dea5a5997bc094eb9fca776cd30e4910186daac1e8bc471ce9932ac3f2d5:


#import "PGException.h"

@interface PGCommandFailedException: PGException
{
	OFString *_command;
}

#ifdef OF_HAVE_PROPERTIES
@property (readonly, copy, nonatomic) OFString *command;
#endif

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