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
// 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/.
//! Structs and helper methods for Error handling
use thiserror::Error;
/// MwalibError subtypes
#[derive(Error, Debug)]
pub enum MwalibError {
/* // An error derived from `CfitsioError`.
#[error("{0}")]
Cfitsio(#[from] crate::fits_read::error::CfitsioError),*/
/// An error derived from `FitsError`.
#[error("{0}")]
Fits(#[from] crate::fits_read::error::FitsError),
/// An error derived from `BeamError`.
#[error("{0}")]
Beam(#[from] crate::voltage_beam::error::BeamError),
/// An error derived from `CalibrationFitError`.
#[error("{0}")]
CalibrationFit(#[from] crate::calibration_fit::error::CalibrationFitError),
/// An error derived from `CoarseChannel`.
#[error("{0}")]
CoarseChannel(#[from] crate::coarse_channel::error::CoarseChannelError),
/// An error dervied from `MetafitsError`.
#[error("{0}")]
Metafits(#[from] crate::metafits_context::error::MetafitsError),
/// An error derived from `RfinputError`.
#[error("{0}")]
Rfinput(#[from] crate::rfinput::error::RfinputError),
/// An error derived from `GpuboxError`.
#[error("{0}")]
Gpubox(#[from] crate::gpubox_files::error::GpuboxError),
/// An error derived from `VoltageFileError`.
#[error("{0}")]
Voltage(#[from] crate::voltage_files::error::VoltageFileError),
// An error associated with parsing a string into another type.
#[error("{source_file}:{source_line}\nCouldn't parse {key} in {fits_filename} HDU {hdu_num}")]
Parse {
key: String,
fits_filename: String,
hdu_num: usize,
source_file: String,
source_line: u32,
},
}