blob: aa8cee65402a61a39327e3e187e71bf09adaa912 [file] [log] [blame]
package stacks
import (
"fmt"
"gerrit.mcp.mirantis.net/debian/gophercloud.git"
)
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.")
}