Newer
Older
package errcore

Md. Alim Ul Karim
committed
import (
"gitlab.com/evatix-go/core/constants"
)
func ToString(err error) string {

Md. Alim Ul Karim
committed
if err == nil {
return constants.EmptyString
}
return err.Error()
}