typeshare_java/
error.rs

1use thiserror::Error;
2use typeshare_model::prelude::SpecialRustType;
3
4#[derive(Error, Debug)]
5pub enum FormatSpecialTypeError {
6    #[error("Unsupported special type: {0:?}")]
7    UnsupportedSpecialType(SpecialRustType),
8}