blob: c86e326a4e5f4753ad50863c5b10ac979bed9c2d (
plain) (
tree)
|
|
/// A graphical error that occurred while running an application.
#[derive(Debug, thiserror::Error)]
pub enum Error {
/// A suitable graphics adapter or device could not be found
#[error("a suitable graphics adapter or device could not be found")]
AdapterNotFound,
}
|