ObjPgSQL  Artifact [de24e68bdc]

Artifact de24e68bdc4958afaaadd01013f75cacd672c29356aeedd71fa49b056f14327a:

  • File exceptions/PGConnectionFailedException.m — part of check-in [8c8a431322] at 2013-02-13 23:40:59 on branch trunk — Prefix all ivars with an underscore. (user: js size: 347)

#import "PGConnectionFailedException.h"

@implementation PGConnectionFailedException
- (OFString*)description
{
	return [OFString stringWithFormat:
	    @"Establishing a PostgreSQL connection in class %@ failed:\n%s\n"
	    "Parameters: %@", [self inClass],
	    PQerrorMessage([_connection PG_connection]),
	    [_connection parameters]];
}
@end