mirror of
https://github.com/retailcrm/api-client-go.git
synced 2024-11-22 12:56:04 +03:00
9 lines
131 B
Go
9 lines
131 B
Go
|
package errs
|
||
|
|
||
|
// Error implements generic error interface
|
||
|
type Error interface {
|
||
|
error
|
||
|
ApiError() string
|
||
|
ApiErrors() []string
|
||
|
}
|