* Used go-gh table printer for listing caches * lint * lint * minor * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup
12 lines
195 B
Go
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
|
|
}
|