1
0
mirror of https://github.com/fumiama/terasu-cloudflared.git synced 2026-06-11 21:50:25 +08:00
Files
terasu-cloudflared/vendor/github.com/aws/aws-sdk-go/aws/csm/metric_exception.go
2019-08-29 16:54:54 -05:00

27 lines
387 B
Go

package csm
type metricException interface {
Exception() string
Message() string
}
type requestException struct {
exception string
message string
}
func (e requestException) Exception() string {
return e.exception
}
func (e requestException) Message() string {
return e.message
}
type awsException struct {
requestException
}
type sdkException struct {
requestException
}