ObjPgSQL/exceptions/PGCommandFailedException.h
Jonathan Schleifer b3eaf2f272 Prefix all ivars with an underscore.
FossilOrigin-Name: 8c8a4313228bba7114d582a6802a2df53a1fb357f5c0805ae58531dd4c799d8c
2013-02-13 23:40:58 +00:00

19 lines
434 B
Objective-C

#import "PGException.h"
@interface PGCommandFailedException: PGException
{
OFString *_command;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, copy, nonatomic) OFString *command;
#endif
+ exceptionWithClass: (Class)class_
connection: (PGConnection*)connection
command: (OFString*)command;
- initWithClass: (Class)class_
connection: (PGConnection*)connection
command: (OFString*)command;
- (OFString*)command;
@end