1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * File: error.rs
 * Project: src
 * Created Date: 14/12/2023
 * Author: Shun Suzuki
 * -----
 * Last Modified: 14/12/2023
 * Modified By: Shun Suzuki (suzuki@hapis.k.u-tokyo.ac.jp)
 * -----
 * Copyright (c) 2023 Shun Suzuki. All rights reserved.
 *
 */

use thiserror::Error;

#[derive(Error, Debug)]
#[deprecated(since = "19.1.0", note = "This error is no longer used.")]
pub enum AUTDExtraError {
    #[error("The size of local_trans_pos is wrong.")]
    FPGALocalTransPos,
}