mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
15 lines
317 B
Go
15 lines
317 B
Go
|
package graphite
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
// An UnsupportedValueError is returned when a parsed value is not
|
||
|
// supported.
|
||
|
type UnsupportedValueError struct {
|
||
|
Field string
|
||
|
Value float64
|
||
|
}
|
||
|
|
||
|
func (err *UnsupportedValueError) Error() string {
|
||
|
return fmt.Sprintf(`field "%s" value: "%v" is unsupported`, err.Field, err.Value)
|
||
|
}
|