envoid/internal/errors/secret_exists.go
Sagi Dayan 33f99dd65b
All checks were successful
build bin / Make sure build does not fail (push) Successful in 2m51s
Codespell / Check for spelling errors (push) Successful in 22s
Initial commit
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
2024-12-15 17:41:31 +02:00

15 lines
294 B
Go

package errors
import "fmt"
type SecretExistsError struct {
secret string
}
func (e *SecretExistsError) Error() string {
return fmt.Sprintf("secret %s already exists", e.secret)
}
func NewSecretExsistsError(secret string) *SecretExistsError {
return &SecretExistsError{secret: secret}
}