(source string, raw error)
| 101 | } |
| 102 | |
| 103 | func newBindError(source string, raw error) *BindError { |
| 104 | return &BindError{Source: source, Field: extractFieldFromError(raw), Err: raw} |
| 105 | } |
| 106 | |
| 107 | // AcquireBind returns Bind reference from bind pool. |
| 108 | func AcquireBind() *Bind { |
no test coverage detected