mirror of
https://github.com/traefik/traefik.git
synced 2026-06-18 11:29:50 +03: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)
|
|
}
|