mirror of
https://github.com/kernelstub/Ferrum
synced 2026-06-21 13:55:09 +00:00
10 lines
182 B
Go
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))
|
|
}
|