11 lines
185 B
Go
11 lines
185 B
Go
package gountries
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// Error returns a formatted error
|
|
func makeError(errMsg, errType string) error {
|
|
return fmt.Errorf("gountries error. %s: %s", errMsg, errType)
|
|
}
|