14 lines
226 B
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)
|
||
|
}
|