about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/lf-make-map/src/mapping/error.rs
blob: 2a59ed6401d68e3264ac8d640ce96ea28c52d846 (plain) (blame)
1
2
3
4
5
6
7
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error("The node at key '{0}' already exists!")]
    NodeExits(String),
}