#[non_exhaustive]
#[derive(::std::fmt::Debug)]
pub enum Error {
InvalidInputException(crate::types::error::InvalidInputException),
InvalidNextTokenException(crate::types::error::InvalidNextTokenException),
LimitExceededException(crate::types::error::LimitExceededException),
ResourceInUseException(crate::types::error::ResourceInUseException),
ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
Unhandled(::aws_smithy_types::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::operation::query_forecast::QueryForecastError, R>> for Error
where
R: Send + Sync + std::fmt::Debug + 'static,
{
fn from(err: ::aws_smithy_http::result::SdkError<crate::operation::query_forecast::QueryForecastError, R>) -> Self {
match err {
::aws_smithy_http::result::SdkError::ServiceError(context) => Self::from(context.into_err()),
_ => Error::Unhandled(
::aws_smithy_types::error::Unhandled::builder()
.meta(::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(&err).clone())
.source(err)
.build(),
),
}
}
}
impl From<crate::operation::query_forecast::QueryForecastError> for Error {
fn from(err: crate::operation::query_forecast::QueryForecastError) -> Self {
match err {
crate::operation::query_forecast::QueryForecastError::InvalidInputException(inner) => Error::InvalidInputException(inner),
crate::operation::query_forecast::QueryForecastError::InvalidNextTokenException(inner) => Error::InvalidNextTokenException(inner),
crate::operation::query_forecast::QueryForecastError::LimitExceededException(inner) => Error::LimitExceededException(inner),
crate::operation::query_forecast::QueryForecastError::ResourceInUseException(inner) => Error::ResourceInUseException(inner),
crate::operation::query_forecast::QueryForecastError::ResourceNotFoundException(inner) => Error::ResourceNotFoundException(inner),
crate::operation::query_forecast::QueryForecastError::Unhandled(inner) => Error::Unhandled(inner),
}
}
}
impl<R> From<::aws_smithy_http::result::SdkError<crate::operation::query_what_if_forecast::QueryWhatIfForecastError, R>> for Error
where
R: Send + Sync + std::fmt::Debug + 'static,
{
fn from(err: ::aws_smithy_http::result::SdkError<crate::operation::query_what_if_forecast::QueryWhatIfForecastError, R>) -> Self {
match err {
::aws_smithy_http::result::SdkError::ServiceError(context) => Self::from(context.into_err()),
_ => Error::Unhandled(
::aws_smithy_types::error::Unhandled::builder()
.meta(::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(&err).clone())
.source(err)
.build(),
),
}
}
}
impl From<crate::operation::query_what_if_forecast::QueryWhatIfForecastError> for Error {
fn from(err: crate::operation::query_what_if_forecast::QueryWhatIfForecastError) -> Self {
match err {
crate::operation::query_what_if_forecast::QueryWhatIfForecastError::InvalidInputException(inner) => Error::InvalidInputException(inner),
crate::operation::query_what_if_forecast::QueryWhatIfForecastError::InvalidNextTokenException(inner) => {
Error::InvalidNextTokenException(inner)
}
crate::operation::query_what_if_forecast::QueryWhatIfForecastError::LimitExceededException(inner) => Error::LimitExceededException(inner),
crate::operation::query_what_if_forecast::QueryWhatIfForecastError::ResourceInUseException(inner) => Error::ResourceInUseException(inner),
crate::operation::query_what_if_forecast::QueryWhatIfForecastError::ResourceNotFoundException(inner) => {
Error::ResourceNotFoundException(inner)
}
crate::operation::query_what_if_forecast::QueryWhatIfForecastError::Unhandled(inner) => Error::Unhandled(inner),
}
}
}
impl ::std::error::Error for Error {
fn source(&self) -> std::option::Option<&(dyn ::std::error::Error + 'static)> {
match self {
Error::InvalidInputException(inner) => inner.source(),
Error::InvalidNextTokenException(inner) => inner.source(),
Error::LimitExceededException(inner) => inner.source(),
Error::ResourceInUseException(inner) => inner.source(),
Error::ResourceNotFoundException(inner) => inner.source(),
Error::Unhandled(inner) => inner.source(),
}
}
}
impl ::aws_http::request_id::RequestId for Error {
fn request_id(&self) -> Option<&str> {
match self {
Self::InvalidInputException(e) => e.request_id(),
Self::InvalidNextTokenException(e) => e.request_id(),
Self::LimitExceededException(e) => e.request_id(),
Self::ResourceInUseException(e) => e.request_id(),
Self::ResourceNotFoundException(e) => e.request_id(),
Self::Unhandled(e) => e.request_id(),
}
}
}