You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ci_validator/gitlabcivalidator/errors.go

34 lines
897 B
Go

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package gitlabcivalidator
import (
"fmt"
"strings"
)
// ValidationError представляет собой совокупную ошибку,
// содержащую несколько сообщений об ошибках.
type ValidationError struct {
Errors []error
}
func (ve *ValidationError) Error() string {
var sb strings.Builder
sb.WriteString("Found validation errors:\n")
for i, err := range ve.Errors {
sb.WriteString(fmt.Sprintf("%d) %s\n", i+1, err.Error()))
}
return sb.String()
}
// Add добавляет новую ошибку во внутренний срез ValidationError.
func (ve *ValidationError) Add(err error) {
if err == nil {
return
}
ve.Errors = append(ve.Errors, err)
}
// IsEmpty проверяет, есть ли в ValidationError какие-либо ошибки.
func (ve *ValidationError) IsEmpty() bool {
return len(ve.Errors) == 0
}