
toxgene.util.DateFormatException Maven / Gradle / Ivy
/**
* Implements an exception for invalid date values, thrown at runtime.
*
* @author Denilson Barbosa
* @version 0.1
*/
package toxgene.util;
import java.lang.IllegalArgumentException;
public class DateFormatException extends IllegalArgumentException{
public DateFormatException(String s){
super(s);
}
public DateFormatException(){
super();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy