FossilOrigin-Name: b80a03bd2fd4ff11dc0d9c7ce330695ebc060f78034b9ade2d7eb53d88c7bb80
14 lines
335 B
Objective-C
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
|