FossilOrigin-Name: fc8e42990e7f6476b8b806521222620bbac0496c61a91b20f9e3787fc20fdbb4
18 lines
392 B
Objective-C
18 lines
392 B
Objective-C
#import "PGException.h"
|
|
|
|
OF_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PGCommandFailedException: PGException
|
|
{
|
|
OFString *_command;
|
|
}
|
|
|
|
@property (readonly, nonatomic) OFString *command;
|
|
|
|
+ (instancetype)exceptionWithConnection: (PGConnection *)connection
|
|
command: (OFString *)command;
|
|
- initWithConnection: (PGConnection *)connection
|
|
command: (OFString *)command;
|
|
@end
|
|
|
|
OF_ASSUME_NONNULL_END
|