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