mirror of
https://github.com/traefik/traefik
synced 2026-02-12 03:58:11 +00:00
10 lines
180 B
Go
10 lines
180 B
Go
package egoscale
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func (e *Error) Error() error {
|
|
return fmt.Errorf("exoscale API error %d (internal code: %d): %s", e.ErrorCode, e.CSErrorCode, e.ErrorText)
|
|
}
|