ObjPgSQL  PGCommandFailedException.h at [b80a03bd2f]

File src/exceptions/PGCommandFailedException.h artifact c0757cbfd8 part of check-in b80a03bd2f


#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