ObjPgSQL  Artifact [386de510d2]

Artifact 386de510d29ad1ee305366437b7b3384e08f9c13636eebc3ed9f6009a0ba5714:

  • File src/exceptions/PGConnectionFailedException.m — part of check-in [fc8e42990e] at 2017-05-09 23:19:20 on branch trunk — Adjust to recent ObjFW changes (user: js size: 273)

#import "PGConnectionFailedException.h"

@implementation PGConnectionFailedException
- (OFString *)description
{
	return [OFString stringWithFormat:
	    @"Establishing a PostgreSQL connection failed:\n%@\n"
	    "Parameters: %@", _error, [_connection parameters]];
}
@end