package db import "errors" var ( ErrTxBeginFailed = errors.New("tx: could not begin a Tx") ErrTxCommitFailed = errors.New("tx: could not commit the Tx") )