ObjPgSQL  Artifact [de24e68bdc]

Artifact de24e68bdc4958afaaadd01013f75cacd672c29356aeedd71fa49b056f14327a:


#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