github.com/mook-as/cf-cli@v7.0.0-beta.28.0.20200120190804-b91c115fae48+incompatible/actor/actionerror/not_logged_in_error.go (about) 1 package actionerror 2 3 // NotLoggedInError represents the scenario when the user is not logged in. 4 type NotLoggedInError struct { 5 BinaryName string 6 } 7 8 func (NotLoggedInError) Error() string { 9 // The error message will be replaced by a translated message, returning the 10 // empty string does not add to the translation files. 11 return "" 12 }