databricks-cli/libs/cmdio/error_event.go

14 lines
219 B
Go

package cmdio
type ErrorEvent struct {
Error string `json:"error"`
}
func (event *ErrorEvent) String() string {
return "Error: " + event.Error
}
func (event *ErrorEvent) IsInplaceSupported() bool {
return false
}