mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-12-19 23:16:08 +01:00
33f99c4fc1
Uses godep to vendor dependencies. Godeps is not necessary during build, golang's new vendor support is used instead.
20 lines
361 B
Go
20 lines
361 B
Go
package xmlrpc
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// xmlrpcError represents errors returned on xmlrpc request.
|
|
type xmlrpcError struct {
|
|
code int
|
|
err string
|
|
}
|
|
|
|
// Error() method implements Error interface
|
|
func (e *xmlrpcError) Error() string {
|
|
return fmt.Sprintf("error: \"%s\" code: %d", e.err, e.code)
|
|
}
|
|
|
|
// Base64 represents value in base64 encoding
|
|
type Base64 string
|