9 lines
160 B
Go
9 lines
160 B
Go
package db
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrTxBeginFailed = errors.New("tx: could not begin a Tx")
|
|
ErrTxCommitFailed = errors.New("tx: could not commit the Tx")
|
|
)
|