ObjPgSQL  Artifact [c0757cbfd8]

Artifact c0757cbfd81e8e878d9f60b986ddded97e3d2c8e40b8e2984925ee2df49196b7:

  • File src/exceptions/PGCommandFailedException.h — part of check-in [b80a03bd2f] at 2016-02-21 11:08:17 on branch trunk — Adjust to ObjFW changes (user: js size: 335)

#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