mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-03-02 09:40:18 +00:00
12 lines
226 B
Go
12 lines
226 B
Go
// Copyright 2020-2021 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package secret
|
|
|
|
type MissingCaError struct {
|
|
}
|
|
|
|
func (MissingCaError) Error() string {
|
|
return "CA has not been created yet, please generate a new"
|
|
}
|