ObjPgSQL  Artifact [aa497f3805]

Artifact aa497f3805f6045840818fffdfae1c373f26190a449f60644b3fb7d59ffcf340:

  • File src/exceptions/PGCommandFailedException.h — part of check-in [fc8e42990e] at 2017-05-09 23:19:20 on branch trunk — Adjust to recent ObjFW changes (user: js size: 392)

#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