mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-01-26 22:59:29 +00:00
10 lines
247 B
Go
10 lines
247 B
Go
|
package aws
|
||
|
|
||
|
// MissingRegionError is an error that is returned if region configuration
|
||
|
// value was not found.
|
||
|
type MissingRegionError struct{}
|
||
|
|
||
|
func (*MissingRegionError) Error() string {
|
||
|
return "an AWS region is required, but was not found"
|
||
|
}
|