/
githubmirror
/
toolbox
Обзор
Документация
Войти
/
githubmirror
/
toolbox
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/pkg/utils/errors.go
97 строк
2 KB
Debarshi Ray
Update copyright notices
04 фев 2026, 22:13
04 фев 2026, 22:13
81a9d96
Код
Авторство
О чём код?
/* * Copyright © 2022 – 2026 Red Hat Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package utils import ( "fmt" ) type ContainerError struct { Container string Image string Err error } type DistroError struct { Distro string Err error } type FlockError struct { Path string Errs []error errSuffix string } type ImageError struct { Image string Err error } type ParseReleaseError struct { Hint string } func (err *ContainerError) Error() string { errMsg := fmt.Sprintf("%s: %s", err.Container, err.Err) return errMsg } func (err *ContainerError) Unwrap() error { return err.Err } func (err *DistroError) Error() string { errMsg := fmt.Sprintf("%s: %s", err.Distro, err.Err) return errMsg } func (err *DistroError) Unwrap() error { return err.Err } func (err *FlockError) Error() string { if err.Errs == nil || len(err.Errs) != 2 { panicMsg := fmt.Sprintf("invalid %T", err) panic(panicMsg) } errSuffix := " " if err.errSuffix != "" { errSuffix = fmt.Sprintf(" %s ", err.errSuffix) } errMsg := fmt.Sprintf("%s%s%s: %s", err.Errs[0], errSuffix, err.Path, err.Errs[1]) return errMsg } func (err *FlockError) Unwrap() []error { return err.Errs } func (err *ImageError) Error() string { errMsg := fmt.Sprintf("%s: %s", err.Image, err.Err) return errMsg } func (err *ImageError) Unwrap() error { return err.Err } func (err *ParseReleaseError) Error() string { return err.Hint }