]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/github.com/aws/aws-sdk-go/aws/csm/metric_exception.go
Merge pull request #34 from jcalonso/fix/contact-group-backwards-compatible
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / aws / aws-sdk-go / aws / csm / metric_exception.go
1 package csm
2
3 type metricException interface {
4 Exception() string
5 Message() string
6 }
7
8 type requestException struct {
9 exception string
10 message string
11 }
12
13 func (e requestException) Exception() string {
14 return e.exception
15 }
16 func (e requestException) Message() string {
17 return e.message
18 }
19
20 type awsException struct {
21 requestException
22 }
23
24 type sdkException struct {
25 requestException
26 }