Files
gh-actions-cache/types/errors.go
Deepak Dahiya b8890ddb4c Used go-gh table printer for listing caches (#25)
* Used go-gh table printer for listing caches

* lint

* lint

* minor

* cleanup

* cleanup

* cleanup

* cleanup

* cleanup

* cleanup

* cleanup

* cleanup

* cleanup

* cleanup

* cleanup

* cleanup

* cleanup
2022-08-11 14:15:02 +05:30

12 lines
195 B
Go

package types
type HandledError struct {
Message string
InnerError error
}
// Allow HandledError to satisfy error interface.
func (err HandledError) Error() string {
return err.Message
}