12 lines
209 B
Go
12 lines
209 B
Go
|
package ldd
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
type EntryUnexpectedSegmentsError struct {
|
||
|
Entry string
|
||
|
}
|
||
|
|
||
|
func (e *EntryUnexpectedSegmentsError) Error() string {
|
||
|
return fmt.Sprintf("unexpected segments in entry %q", e.Entry)
|
||
|
}
|