starfall 0.1.0

Astronomical sciences, from the galaxy to the moon, for my Hornvale project.
Documentation
1
2
3
4
5
6
7
8
9
use crate::astronomy::planetary_system::error::Error as PlanetarySystemError;

/// Star system errors.
#[derive(Clone, Debug, Eq, Error, Hash, PartialEq)]
pub enum Error {
  /// Planetary System Error
  #[error("an error occurred in the planetary system ({0})")]
  PlanetarySystemError(#[from] PlanetarySystemError),
}