19
20
21
22
23
24
25
26
27
28
|
#import "PGConnectionFailedException.h"
@implementation PGConnectionFailedException
- (OFString *)description
{
return [OFString stringWithFormat:
@"Establishing a PostgreSQL connection failed:\n%@\n"
"Parameters: %@", _error, [_connection parameters]];
}
@end
|
|
|
19
20
21
22
23
24
25
26
27
28
|
#import "PGConnectionFailedException.h"
@implementation PGConnectionFailedException
- (OFString *)description
{
return [OFString stringWithFormat:
@"Establishing a PostgreSQL connection failed:\n%@\n"
"Parameters: %@", _errorMessage, [_connection parameters]];
}
@end
|