ObjPgSQL/src/exceptions/PGCommandFailedException.h
Jonathan Schleifer 3c16f110f5 Adjust to ObjFW changes
FossilOrigin-Name: b80a03bd2fd4ff11dc0d9c7ce330695ebc060f78034b9ade2d7eb53d88c7bb80
2016-02-21 11:08:17 +00:00

14 lines
335 B
Objective-C

#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