Versions in this module Expand all Collapse all v0 v0.2.0 Oct 18, 2025 Changes in this version + func FindSuggestions(input string, options []string, maxSuggestions int) []string + func IsConfigError(err error) bool + func IsDockerError(err error) bool + func IsKind(err error, kind ErrorKind) bool + func IsNetworkError(err error) bool + func Wrap(err error, op, message string) error + func WrapWithHint(err error, op, message, hint string) error + type ErrorKind string + const ErrorConfig + const ErrorDocker + const ErrorFile + const ErrorGit + const ErrorInternal + const ErrorNetwork + const ErrorService + const ErrorValidation + type OrkError struct + Details []string + Err error + Hint string + Kind ErrorKind + Message string + Op string + Suggestions []string + func ConfigError(op, message, hint string, err error) *OrkError + func DockerError(op, message, hint string, err error) *OrkError + func ErrCircularDependency(cycle []string) *OrkError + func ErrConfigNotFound(path string) *OrkError + func ErrDockerNotRunning(err error) *OrkError + func ErrImageNotFound(imageName string) *OrkError + func ErrInvalidConfig(field, reason string) *OrkError + func ErrPortInUse(port, service, conflictingProcess string) *OrkError + func ErrServiceFailed(serviceName, reason string) *OrkError + func ErrServiceNotFound(serviceName string, availableServices []string) *OrkError + func FileError(op, message, hint string, err error) *OrkError + func NetworkError(op, message, hint string, err error) *OrkError + func ServiceError(op, message, hint string, err error) *OrkError + func ValidationError(op, message string, suggestions []string) *OrkError + func (e *OrkError) Error() string + func (e *OrkError) Unwrap() error