dis_rust/common/
dis_error.rs

1//     dis-rust - A rust implementation of the DIS simulation protocol.
2//     Copyright (C) 2022 Thomas Mann
3// 
4//     This software is dual-licensed. It is available under the conditions of
5//     the GNU Affero General Public License (see the LICENSE file included) 
6//     or under a commercial license (email contact@coffeebreakdevs.com for
7//     details).
8
9/// Enum to capture errors thrown by the library
10#[derive(Debug)]
11pub enum DISError {
12    InvalidDISHeader
13}