blob: 51aef948e1ec422618e971cfe0d2c4ca7fe00fa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package ldd
import "fmt"
type EntryUnexpectedSegmentsError struct {
Entry string
}
func (e *EntryUnexpectedSegmentsError) Error() string {
return fmt.Sprintf("unexpected segments in entry %q", e.Entry)
}
|