
edu.nps.moves.siso.EnumNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dis-enums Show documentation
Show all versions of dis-enums Show documentation
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