(migration *PlannedMigration, err error)
| 85 | } |
| 86 | |
| 87 | func newTxError(migration *PlannedMigration, err error) error { |
| 88 | return &TxError{ |
| 89 | Migration: migration.Migration, |
| 90 | Err: err, |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | func (e *TxError) Error() string { |
| 95 | return e.Err.Error() + " handling " + e.Migration.Id |
no outgoing calls
no test coverage detected
searching dependent graphs…