Improved mac support
This commit is contained in:
13
src/errors/ExpectedCLIParameter.go
Normal file
13
src/errors/ExpectedCLIParameter.go
Normal file
@ -0,0 +1,13 @@
|
||||
package errors
|
||||
|
||||
import "fmt"
|
||||
|
||||
// ExpectedCLIParameter error is created when a command line parameter is missing.
|
||||
type ExpectedCLIParameter struct {
|
||||
Parameter string
|
||||
}
|
||||
|
||||
// Error generates the string representation.
|
||||
func (err *ExpectedCLIParameter) Error() string {
|
||||
return fmt.Sprintf("Expected parameter '%s'", err.Parameter)
|
||||
}
|
Reference in New Issue
Block a user