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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright © 2021 Alexandra Frydl
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

//! Basic error handling.

pub use std::error::Error;
pub use thiserror::Error;

use crate::prelude::*;

/// An error representing a panic.
#[derive(Error, From)]
pub struct Panic {
  /// The panic value.
  pub value: Box<dyn Any + Send>,
}

impl Panic {
  /// Returns a reference to the panic value if it is a string.
  pub fn value_str(&self) -> Option<&str> {
    if let Some(string) = self.value.downcast_ref::<String>() {
      Some(string)
    } else if let Some(string) = self.value.downcast_ref::<&'static str>() {
      Some(string)
    } else {
      None
    }
  }
}

impl Debug for Panic {
  fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
    write!(f, "PanicError")?;

    if let Some(value) = self.value_str() {
      write!(f, "({:?})", value)?;
    }

    Ok(())
  }
}

impl Display for Panic {
  fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
    write!(f, "Panicked")?;

    if let Some(value) = self.value_str() {
      write!(f, " with `{}`", value)?;
    }

    write!(f, ".")
  }
}