1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
package stacks
import (
"fmt"
"github.com/gophercloud/gophercloud"
)
type ErrInvalidEnvironment struct {
gophercloud.BaseError
Section string
}
func (e ErrInvalidEnvironment) Error() string {
return fmt.Sprintf("Environment has wrong section: %s", e.Section)
}
type ErrInvalidDataFormat struct {
gophercloud.BaseError
}
func (e ErrInvalidDataFormat) Error() string {
return fmt.Sprintf("Data in neither json nor yaml format.")
}
type ErrInvalidTemplateFormatVersion struct {
gophercloud.BaseError
Version string
}
func (e ErrInvalidTemplateFormatVersion) Error() string {
return fmt.Sprintf("Template format version not found.")
}
type ErrTemplateRequired struct {
gophercloud.BaseError
}
func (e ErrTemplateRequired) Error() string {
return fmt.Sprintf("Template required for this function.")
}
|