1
mirror of https://github.com/rclone/rclone synced 2025-03-24 07:04:23 +01:00

15 lines
258 B
Go

package src
import "encoding/json"
//DiskClientError struct
type DiskClientError struct {
Description string `json:"Description"`
Code string `json:"Error"`
}
func (e DiskClientError) Error() string {
b, _ := json.Marshal(e)
return string(b)
}