github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+incompatible/actor/actionerror/startup_timeout_error.go (about) 1 package actionerror 2 3 import "fmt" 4 5 // StartupTimeoutError is returned when startup timeout is reached waiting for 6 // an application to start. 7 type StartupTimeoutError struct { 8 Name string 9 } 10 11 func (e StartupTimeoutError) Error() string { 12 return fmt.Sprintf("Timed out waiting for application '%s' to start", e.Name) 13 }