// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//
// SPDX-License-Identifier: EUPL-1.2
//! Definition of error related types used in the OpenTalk API
pub use ApiError;
pub use AuthenticationError;
pub use ErrorBody;
pub use ValidationErrorEntry;
/// Error code when an existing value is ignored
pub const ERROR_CODE_IGNORED_VALUE: &str = "ignored_value";
/// Error code when a required value is missing
pub const ERROR_CODE_VALUE_REQUIRED: &str = "value_required";
/// Error code when an invalid value is encountered
pub const ERROR_CODE_INVALID_VALUE: &str = "invalid_value";