epoint_transform/
error.rs1use thiserror::Error;
2
3#[derive(Error, Debug)]
4pub enum Error {
5 #[error(transparent)]
6 EcoordError(#[from] ecoord::Error),
7 #[error(transparent)]
8 EpointError(#[from] epoint_core::Error),
9 #[error(transparent)]
10 Polars(#[from] polars::error::PolarsError),
11
12 #[error("path is not a directory")]
13 ContainsNoPoints,
14 #[error("path is not a directory")]
15 ContainsColors,
16 #[error("path is not a directory")]
17 InvalidNumber,
18 #[error("path is not a directory")]
19 DifferentPointCloudInfos,
20}