edu.nps.moves.deadreckoning.utils.MatrixException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-dis Show documentation
Show all versions of open-dis Show documentation
An open source implementation of the Distributed Interactive Simulation (DIS) IEEE-1278 protocol
package edu.nps.moves.deadreckoning.utils;
/**
* The Exception class that is thrown by the Matrix.java class
* Very basic Exception class, only passes a description of the error
* that will hopefully lead to simple troubleshooting resolution...:)
*
* @author Sheldon L. Snyder
*/
public class MatrixException extends Exception
{
public MatrixException(String s)
{
super(s);
}
}