ObjPgSQL/exceptions/PGConnectionFailedException.m
Jonathan Schleifer 25c48048a1 Improve exceptions.
FossilOrigin-Name: 12b5ef483a1f9eae92df83cf8a6aded299ef10dd2972059a36c79d299e676a0d
2013-07-23 14:11:41 +00:00

10 lines
272 B
Objective-C

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