mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
34 lines
774 B
Rust
34 lines
774 B
Rust
// Standard
|
|
use std::any;
|
|
|
|
// Project
|
|
use client;
|
|
|
|
// Crate
|
|
use crate::render::RenderError;
|
|
|
|
/// Represents any error that may be triggered by Voxygen
|
|
#[derive(Debug)]
|
|
pub enum Error {
|
|
/// An error relating to the internal client
|
|
ClientError(client::Error),
|
|
/// A miscellaneous error relating to a backend dependency
|
|
BackendError(Box<any::Any>),
|
|
/// An error relating the rendering subsystem
|
|
RenderError(RenderError),
|
|
// A miscellaneous error with an unknown or unspecified source
|
|
Other(failure::Error),
|
|
}
|
|
|
|
impl From<RenderError> for Error {
|
|
fn from(err: RenderError) -> Self {
|
|
Error::RenderError(err)
|
|
}
|
|
}
|
|
|
|
impl From<client::Error> for Error {
|
|
fn from(err: client::Error) -> Self {
|
|
Error::ClientError(err)
|
|
}
|
|
}
|