Skip to main content

sift_core/search/pattern/
error.rs

1use thiserror::Error;
2
3#[derive(Debug, Error)]
4pub enum CompileError {
5    #[error("regex build error: {0}")]
6    RegexBuild(String),
7}