1
2
3
4
5
6
7
8
9
10
|
#import "PGConnectionFailedException.h"
@implementation PGConnectionFailedException
- (OFString*)description
{
return [OFString stringWithFormat:
@"Establishing a PostgreSQL connection failed:\n%@\n"
"Parameters: %@", _error, [_connection parameters]];
}
@end
|
|
|
1
2
3
4
5
6
7
8
9
10
|
#import "PGConnectionFailedException.h"
@implementation PGConnectionFailedException
- (OFString *)description
{
return [OFString stringWithFormat:
@"Establishing a PostgreSQL connection failed:\n%@\n"
"Parameters: %@", _error, [_connection parameters]];
}
@end
|