diff options
author | stuconnolly <stuart02@gmail.com> | 2012-09-03 11:23:32 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-09-03 11:23:32 +0000 |
commit | 4053c2b5466526212e4946da4448229fe75cf323 (patch) | |
tree | 03f3f65dab9f409423aadd7f58b7ae24a7d2cd77 | |
parent | e4c3ec208cde23fb73edeb9db69a7f65a36d9fd4 (diff) | |
download | sequelpro-4053c2b5466526212e4946da4448229fe75cf323.tar.gz sequelpro-4053c2b5466526212e4946da4448229fe75cf323.tar.bz2 sequelpro-4053c2b5466526212e4946da4448229fe75cf323.zip |
PostgresKit: Comments.
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresError.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresError.h b/Frameworks/PostgresKit/Source/FLXPostgresError.h index e9009ecb..58632f04 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresError.h +++ b/Frameworks/PostgresKit/Source/FLXPostgresError.h @@ -40,32 +40,32 @@ } /** - * @property errorSeverity + * @property errorSeverity The severity of the error. */ @property (readonly) NSString *errorSeverity; /** - * @property errorStateCode + * @property errorStateCode The errors state code. */ @property (readonly) NSString *errorStateCode; /** - * @property errorPrimaryMessage + * @property errorPrimaryMessage The primary error message. */ @property (readonly) NSString *errorPrimaryMessage; /** - * @property errorDetailMessage + * @property errorDetailMessage The detailed error message. */ @property (readonly) NSString *errorDetailMessage; /** - * @property errorMessageHint + * @property errorMessageHint The error message hint. */ @property (readonly) NSString *errorMessageHint; /** - * @property errorStatementPosition + * @property errorStatementPosition The position within the executed statement that caused the error. */ @property (readonly) NSUInteger errorStatementPosition; |