github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/util/clissh/ssherror/unable_to_authenticate_error.go (about) 1 package ssherror 2 3 type UnableToAuthenticateError struct { 4 Err error 5 } 6 7 func (e UnableToAuthenticateError) Error() string { 8 return e.Err.Error() 9 }