mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 14:35:36 +01:00
Merge pull request #828 from SummerGram/request_entity_too_large
Add `ApiError::RequestEntityTooLarge`
This commit is contained in:
commit
4d250d6a05
1 changed files with 12 additions and 0 deletions
|
@ -740,6 +740,18 @@ pub enum ApiError {
|
|||
#[serde(rename = "Bad Request: invalid file id")]
|
||||
#[error("Bad Request: invalid file id")]
|
||||
FileIdInvalid,
|
||||
|
||||
/// Occurs when bot tries to upload a file which is larger than 50 MB using multipart/form-data.
|
||||
///
|
||||
/// May happen in methods:
|
||||
/// 1. [`SendVideo`]
|
||||
/// 2. [`SendDocument`]
|
||||
///
|
||||
/// [`SendVideo`]: crate::payloads::SendVideo
|
||||
/// [`SendDocument`]: crate::payloads::SendDocument
|
||||
#[serde(rename = "Request Entity Too Large")]
|
||||
#[error("Request Entity Too Large")]
|
||||
RequestEntityTooLarge,
|
||||
|
||||
/// Error which is not known to `teloxide`.
|
||||
///
|
||||
|
|
Loading…
Reference in a new issue