Fixed incorrect OS detection
This commit is contained in:
14
src/errors/InvalidParameterValue.go
Normal file
14
src/errors/InvalidParameterValue.go
Normal file
@ -0,0 +1,14 @@
|
||||
package errors
|
||||
|
||||
import "fmt"
|
||||
|
||||
// InvalidParameterValue error is created when a parameter has an invalid value.
|
||||
type InvalidParameterValue struct {
|
||||
Value string
|
||||
Parameter string
|
||||
}
|
||||
|
||||
// Error generates the string representation.
|
||||
func (err *InvalidParameterValue) Error() string {
|
||||
return fmt.Sprintf("Invalid value '%s' for parameter '%s'", err.Value, err.Parameter)
|
||||
}
|
Reference in New Issue
Block a user