FossilOrigin-Name: 8c8a4313228bba7114d582a6802a2df53a1fb357f5c0805ae58531dd4c799d8c
19 lines
434 B
Objective-C
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
|