github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+incompatible/actor/actionerror/deployment_not_found_error.go (about) 1 package actionerror 2 3 // ActiveDeploymentNotFoundError is an error wrapper that represents the case 4 // when the deployment is not found. 5 type ActiveDeploymentNotFoundError struct { 6 } 7 8 // Error method to display the error message. 9 func (e ActiveDeploymentNotFoundError) Error() string { 10 return "No active deployment found for app." 11 }