ObjPgSQL  PGCommandFailedException.h at [8679c61b2c]

File src/exceptions/PGCommandFailedException.h artifact 4d78dea5a5 part of check-in 8679c61b2c


#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