autd3_timer/
error.rs

1/*
2 * File: error.rs
3 * Project: src
4 * Created Date: 24/05/2021
5 * Author: Shun Suzuki
6 * -----
7 * Last Modified: 24/05/2021
8 * Modified By: Shun Suzuki (suzuki@hapis.k.u-tokyo.ac.jp)
9 * -----
10 * Copyright (c) 2021 Hapis Lab. All rights reserved.
11 *
12 */
13
14use thiserror::Error;
15
16#[derive(Error, Debug)]
17pub enum TimerError {
18    #[error("failed to create timer")]
19    CreationFailed(),
20    #[error("failed to delete timer")]
21    DeleteFailed(),
22}