(typename string, matching []Id)
| 32 | } |
| 33 | |
| 34 | func NewErrMultipleMatch(typename string, matching []Id) *ErrMultipleMatch { |
| 35 | return &ErrMultipleMatch{typename: typename, Matching: matching} |
| 36 | } |
| 37 | |
| 38 | func (e ErrMultipleMatch) Error() string { |
| 39 | matching := make([]string, len(e.Matching)) |
no outgoing calls
no test coverage detected