ObjPgSQL  PGConnectionFailedException.m at [8c8a431322]

File exceptions/PGConnectionFailedException.m artifact de24e68bdc part of check-in 8c8a431322


#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