com.wselwood.mpcreader.InvalidDataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mpc-reader Show documentation
Show all versions of mpc-reader Show documentation
A Reader for minor planet center data files.
package com.wselwood.mpcreader;
/**
* Exception to be used when data in the file is invalid.
*
* Created by wselwood on 14/04/14.
*/
public class InvalidDataException extends Exception {
public InvalidDataException(String message) {
super(message);
}
public InvalidDataException(String message, Throwable cause) {
super(message, cause);
}
}