/
uzer_007
/
Rixea
Обзор
Документация
Войти
/
uzer_007
/
Rixea
Код
Запросы
0
Задачи
Вики
Пакеты
5
Релизы
2
CI/CD
Аналитика
Безопасность
master
models/db/error.go
74 строки
2 KB
uzer_007
feat: первая версия Rixea
02 авг 2026, 22:16
02 авг 2026, 22:16
d4f7504
Код
Авторство
О чём код?
// Copyright 2026 Uzer_007. All rights reserved. // SPDX-License-Identifier: MIT package db import ( "fmt" "gitverse.ru/uzer_007/Rixea/modules/util" ) // ErrCancelled represents an error due to context cancellation type ErrCancelled struct { Message string } // IsErrCancelled checks if an error is a ErrCancelled. func IsErrCancelled(err error) bool { _, ok := err.(ErrCancelled) return ok } func (err ErrCancelled) Error() string { return "Cancelled: " + err.Message } // ErrCancelledf returns an ErrCancelled for the provided format and args func ErrCancelledf(format string, args ...any) error { return ErrCancelled{ fmt.Sprintf(format, args...), } } // ErrSSHDisabled represents an "SSH disabled" error. type ErrSSHDisabled struct{} // IsErrSSHDisabled checks if an error is a ErrSSHDisabled. func IsErrSSHDisabled(err error) bool { _, ok := err.(ErrSSHDisabled) return ok } func (err ErrSSHDisabled) Error() string { return "SSH is disabled" } // ErrNotExist represents a non-exist error. type ErrNotExist struct { Resource string ID int64 } // IsErrNotExist checks if an error is an ErrNotExist func IsErrNotExist(err error) bool { _, ok := err.(ErrNotExist) return ok } func (err ErrNotExist) Error() string { name := "record" if err.Resource != "" { name = err.Resource } if err.ID != 0 { return fmt.Sprintf("%s does not exist [id: %d]", name, err.ID) } return name + " does not exist" } // Unwrap unwraps this as a ErrNotExist err func (err ErrNotExist) Unwrap() error { return util.ErrNotExist }