oven-sh/bun · error · Error
ShortRead
Error message
ShortRead
What it means
Error "ShortRead" thrown in oven-sh/bun.
Source
Thrown at src/brotli/error.rs:9
#[derive(Debug, Clone, Copy, PartialEq, Eq, thiserror::Error)]
pub enum Error {
#[error("BrotliFailedToLoad")]
BrotliFailedToLoad,
#[error("BrotliFailedToCreateInstance")]
BrotliFailedToCreateInstance,
#[error("BrotliDecompressionError")]
BrotliDecompressionError,
#[error("ShortRead")]
ShortRead,
}
impl Error {
#[allow(clippy::trivially_copy_pass_by_ref)]
pub fn name(&self) -> &'static str {
match self {
Self::BrotliFailedToLoad => "BrotliFailedToLoad",
Self::BrotliFailedToCreateInstance => "BrotliFailedToCreateInstance",
Self::BrotliDecompressionError => "BrotliDecompressionError",
Self::ShortRead => "ShortRead",
}
}
}
impl bun_core::output::ErrName for Error {
fn name(&self) -> &[u8] {
(*self).name().as_bytes()View on GitHub (pinned to 8c5296ac45)
When it happens
Trigger: Thrown at src/brotli/error.rs:9 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of oven-sh/bun@8c5296ac45 (2026-08-16).
Data as JSON: /api/errors/5a70e2f30a8dac77.
Report an issue: GitHub.