1
mirror of https://github.com/rclone/rclone synced 2025-04-05 23:46:40 +02: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)
}