ecfb38c7bf
Reference:- https://hackmd.io/aGaz7YXSSHybGcyol8vYEw Relates-To: #391 Change-Id: Ia1d4524f5228542cf3fc4b29074c668eca3c55bb
37 lines
1.1 KiB
Go
37 lines
1.1 KiB
Go
/*
|
|
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
|
|
|
|
https://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 checkexpiration
|
|
|
|
import "fmt"
|
|
|
|
// ErrInvalidFormat is called when the user provides format other than yaml/json
|
|
type ErrInvalidFormat struct {
|
|
RequestedFormat string
|
|
}
|
|
|
|
func (e ErrInvalidFormat) Error() string {
|
|
return fmt.Sprintf("invalid output format specified %s. Allowed values are json|yaml", e.RequestedFormat)
|
|
}
|
|
|
|
// ErrPEMFail is called where there is a PEM related failure while parsing the certificate block
|
|
type ErrPEMFail struct {
|
|
Context string
|
|
Err string
|
|
}
|
|
|
|
func (e ErrPEMFail) Error() string {
|
|
return fmt.Sprintf("failed to %s certificate PEM: %s", e.Context, e.Err)
|
|
}
|