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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#[non_exhaustive]
#[derive(std::fmt::Debug)]
pub enum Error {
InvalidInputException(crate::error::InvalidInputException),
InvalidNextTokenException(crate::error::InvalidNextTokenException),
LimitExceededException(crate::error::LimitExceededException),
ResourceInUseException(crate::error::ResourceInUseException),
ResourceNotFoundException(crate::error::ResourceNotFoundException),
Unhandled(crate::error::Unhandled),
}
impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Error::InvalidInputException(inner) => inner.fmt(f),
Error::InvalidNextTokenException(inner) => inner.fmt(f),
Error::LimitExceededException(inner) => inner.fmt(f),
Error::ResourceInUseException(inner) => inner.fmt(f),
Error::ResourceNotFoundException(inner) => inner.fmt(f),
Error::Unhandled(inner) => inner.fmt(f),
}
}
}
impl<R> From<aws_smithy_http::result::SdkError<crate::error::QueryForecastError, R>> for Error
where
R: Send + Sync + std::fmt::Debug + 'static,
{
fn from(err: aws_smithy_http::result::SdkError<crate::error::QueryForecastError, R>) -> Self {
match err {
aws_smithy_http::result::SdkError::ServiceError(context) => {
Self::from(context.into_err())
}
_ => Error::Unhandled(crate::error::Unhandled::new(err.into())),
}
}
}
impl From<crate::error::QueryForecastError> for Error {
fn from(err: crate::error::QueryForecastError) -> Self {
match err.kind {
crate::error::QueryForecastErrorKind::InvalidInputException(inner) => {
Error::InvalidInputException(inner)
}
crate::error::QueryForecastErrorKind::InvalidNextTokenException(inner) => {
Error::InvalidNextTokenException(inner)
}
crate::error::QueryForecastErrorKind::LimitExceededException(inner) => {
Error::LimitExceededException(inner)
}
crate::error::QueryForecastErrorKind::ResourceInUseException(inner) => {
Error::ResourceInUseException(inner)
}
crate::error::QueryForecastErrorKind::ResourceNotFoundException(inner) => {
Error::ResourceNotFoundException(inner)
}
crate::error::QueryForecastErrorKind::Unhandled(inner) => {
Error::Unhandled(crate::error::Unhandled::new(inner.into()))
}
}
}
}
impl<R> From<aws_smithy_http::result::SdkError<crate::error::QueryWhatIfForecastError, R>> for Error
where
R: Send + Sync + std::fmt::Debug + 'static,
{
fn from(
err: aws_smithy_http::result::SdkError<crate::error::QueryWhatIfForecastError, R>,
) -> Self {
match err {
aws_smithy_http::result::SdkError::ServiceError(context) => {
Self::from(context.into_err())
}
_ => Error::Unhandled(crate::error::Unhandled::new(err.into())),
}
}
}
impl From<crate::error::QueryWhatIfForecastError> for Error {
fn from(err: crate::error::QueryWhatIfForecastError) -> Self {
match err.kind {
crate::error::QueryWhatIfForecastErrorKind::InvalidInputException(inner) => {
Error::InvalidInputException(inner)
}
crate::error::QueryWhatIfForecastErrorKind::InvalidNextTokenException(inner) => {
Error::InvalidNextTokenException(inner)
}
crate::error::QueryWhatIfForecastErrorKind::LimitExceededException(inner) => {
Error::LimitExceededException(inner)
}
crate::error::QueryWhatIfForecastErrorKind::ResourceInUseException(inner) => {
Error::ResourceInUseException(inner)
}
crate::error::QueryWhatIfForecastErrorKind::ResourceNotFoundException(inner) => {
Error::ResourceNotFoundException(inner)
}
crate::error::QueryWhatIfForecastErrorKind::Unhandled(inner) => {
Error::Unhandled(crate::error::Unhandled::new(inner.into()))
}
}
}
}
impl std::error::Error for Error {}