ExecAbortError is returned when a transaction is aborted.
| 182 | |
| 183 | // ExecAbortError is returned when a transaction is aborted. |
| 184 | type ExecAbortError struct { |
| 185 | msg string |
| 186 | } |
| 187 | |
| 188 | func (e *ExecAbortError) Error() string { |
| 189 | return e.msg |
nothing calls this directly
no outgoing calls
no test coverage detected