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

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