Lines Matching refs:err
17 appConfig, err := loadConfig()
18 if err != nil {
19 panic(formattedError(err))
33 if err := controllerFn(appConfig); err != nil {
34 topLevelErrorHandle(err, statusChannel)
61 func topLevelErrorHandle(err error, statusChannel chan ent.StatusMessage) {
64 Meta: formattedError(err),
66 fmt.Println(formattedError(err))
71 err := filesystem.ReadFileAsJson(configFile, &appConfig)
72 if err != nil {
73 return appConfig, err
78 func formattedError(err error) string {
79 return fmt.Sprintf("%+v", err)