Code

< 40 %
40-60 %
> 60 %
1
package hkid
2
3
type patterNotMatchError struct {
4
}
5
6
func newPatterNotMatchError() *patterNotMatchError {
7 1
	return &patterNotMatchError{}
8
}
9
10
func (h patterNotMatchError) Error() string {
11
	return "Patter not match"
12
}
13