terraform/vendor/github.com/masterzen/winrm/error.go

14 lines
226 B
Go

package winrm
import "fmt"
// errWinrm generic error struct
type errWinrm struct {
message string
}
// ErrWinrm implements the Error type interface
func (e errWinrm) Error() string {
return fmt.Sprintf("%s", e.message)
}