influxdb/error.go

10 lines
247 B
Go
Raw Normal View History

package platform
2018-08-27 17:09:17 +00:00
// ChronografError is a domain error encountered while processing chronograf requests.
type ChronografError string
2018-08-27 17:09:17 +00:00
// ChronografError returns the string of an error.
func (e ChronografError) Error() string {
return string(e)
}