Artifact 4d78dea5a5997bc094eb9fca776cd30e4910186daac1e8bc471ce9932ac3f2d5:
- File exceptions/PGCommandFailedException.h — part of check-in [12b5ef483a] at 2013-07-23 14:11:42 on branch trunk — Improve exceptions. (user: js, size: 401) [annotate] [blame] [check-ins using]
- File src/exceptions/PGCommandFailedException.h — part of check-in [8679c61b2c] at 2014-07-18 23:35:18 on branch trunk — Add a proper build system (user: js, size: 401) [annotate] [blame] [check-ins using]
#import "PGException.h" @interface PGCommandFailedException: PGException { OFString *_command; } #ifdef OF_HAVE_PROPERTIES @property (readonly, copy, nonatomic) OFString *command; #endif + (instancetype)exceptionWithConnection: (PGConnection*)connection command: (OFString*)command; - initWithConnection: (PGConnection*)connection command: (OFString*)command; - (OFString*)command; @end