func()

in testerror/error.go [40:45]


func (e *Error) AsError() error {
	if e == nil {
		return nil
	}
	return errors.New(e.msg)
}