All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.nps.moves.siso.EnumNotFoundException Maven / Gradle / Ivy

Go to download

An open source implementation of the Distributed Interactive Simulation (DIS) IEEE-1278 protocol

The newest version!

package edu.nps.moves.siso;

/**
 * An exception thrown when a number does not correspond to any known
 * value of enumeration.

* * @author DMcG */ public class EnumNotFoundException extends Exception { /** * Creates a new instance of EnumNotFoundException without detail message. */ public EnumNotFoundException() { } /** * Constructs an instance of EnumNotFoundException with the specified detail message. * @param msg the detail message. */ public EnumNotFoundException(String msg) { super(msg); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy