1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
use std::error::Error;
#[derive(Debug)]
pub enum WasmError {
WebGl2ContextCreation(String),
Shader(String),
WebGlBuffer(String),
}
impl std::fmt::Display for WasmError {
fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
write!(f, "{}: {}", self.name(), self.description())
}
}
impl Error for WasmError {
fn description(&self) -> &str {
match self {
WasmError::WebGl2ContextCreation(msg) => msg,
WasmError::Shader(msg) => msg,
WasmError::WebGlBuffer(msg) => msg,
}
}
fn source(&self) -> Option<&'static dyn Error> { None }
}
impl WasmError {
pub fn name(&self) -> &str {
match self {
WasmError::WebGl2ContextCreation(_) => "WebGl2ContextCreationError",
WasmError::Shader(_) => "ShaderError",
WasmError::WebGlBuffer(_) => "WebGlBufferError",
}
}
}
|