FossilOrigin-Name: 12b5ef483a1f9eae92df83cf8a6aded299ef10dd2972059a36c79d299e676a0d
10 lines
272 B
Objective-C
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
|