api-client-go/errs/interfaces.go

9 lines
140 B
Go
Raw Normal View History

package errs
// Error implements generic error interface
type Error interface {
error
ApiError() string
2019-02-21 11:51:50 +03:00
ApiErrors() map[string]string
}