1
2
3
4
5
6
7
8
use std;
use ParseError;

impl std::error::Error for ParseError {
    fn description(&self) -> &str {
        "UUID parse error"
    }
}