oven-sh/bun · error · bun_ast::Error

ModuleNotFound

Error message

ModuleNotFound

What it means

Error "ModuleNotFound" thrown in oven-sh/bun.

Source

Thrown at src/ast/error.rs:7

#[derive(Debug, Clone, Copy, PartialEq, Eq, thiserror::Error)]
pub enum Error {
    #[error("Clobber")]
    Clobber,
    #[error("SyntaxError")]
    SyntaxError,
    #[error("ModuleNotFound")]
    ModuleNotFound,
    #[error(transparent)]
    Alloc(#[from] bun_alloc::AllocError),
}

impl Error {
    #[allow(clippy::trivially_copy_pass_by_ref)]
    pub fn name(&self) -> &'static str {
        match self {
            Self::Clobber => "Clobber",
            Self::SyntaxError => "SyntaxError",
            Self::ModuleNotFound => "ModuleNotFound",
            Self::Alloc(_) => "OutOfMemory",
        }
    }
}

impl bun_core::output::ErrName for Error {

View on GitHub (pinned to 8c5296ac45)

When it happens

Trigger: Thrown at src/ast/error.rs:7 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/89aeb3a4b605f9fe. Report an issue: GitHub.