1
2
3
4
5
6
7
8
9
10
11
12
use std::io;

use thiserror::Error;

#[derive(Debug, Error)]
pub enum LemmatizationError {
    #[error(transparent)]
    IO(#[from] io::Error),

    #[error(transparent)]
    Fst(#[from] fst::Error),
}