ObjPgSQL  Artifact [c0757cbfd8]

Artifact c0757cbfd81e8e878d9f60b986ddded97e3d2c8e40b8e2984925ee2df49196b7:


#import "PGException.h"

@interface PGCommandFailedException: PGException
{
	OFString *_command;
}

@property (readonly, copy) OFString *command;

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