mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
10 lines
133 B
Go
10 lines
133 B
Go
package types
|
|
|
|
type NotFoundError struct {
|
|
Name string
|
|
}
|
|
|
|
func (e *NotFoundError) Error() string {
|
|
return e.Name + ": not found"
|
|
}
|