Files
troubleshoot/pkg/types/types.go

10 lines
133 B
Go

package types
type NotFoundError struct {
Name string
}
func (e *NotFoundError) Error() string {
return e.Name + ": not found"
}