mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-02-14 09:59:57 +00:00
14 lines
245 B
Go
14 lines
245 B
Go
package cert
|
|
|
|
type CaNotYetValidError struct {}
|
|
|
|
func (CaNotYetValidError) Error() string {
|
|
return "The current CA is not yet valid"
|
|
}
|
|
|
|
type CaExpiredError struct {}
|
|
|
|
func (CaExpiredError) Error() string {
|
|
return "The current CA is expired"
|
|
}
|