Files
kernelstub-Ferrum/windows/errors/errors.go
T
2026-06-13 15:48:59 +02:00

10 lines
182 B
Go

package errors
import "fmt"
type ErrUnsupported string
func (e ErrUnsupported) Error() string {
return fmt.Sprintf("Windows API enumeration is not supported on %s", string(e))
}