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

edu.nps.moves.deadreckoning.utils.MatrixException Maven / Gradle / Ivy

Go to download

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

There is a newer version: 5.8
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy