| 7 | ) |
| 8 | |
| 9 | type legacyPGErrorImplementation struct { |
| 10 | err error |
| 11 | fatal bool |
| 12 | codes map[byte]string |
| 13 | } |
| 14 | |
| 15 | func (l *legacyPGErrorImplementation) Error() string { |
| 16 | return l.err.Error() |
nothing calls this directly
no outgoing calls
no test coverage detected