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

com.adobe.epubcheck.util.InvalidDateException Maven / Gradle / Ivy

Go to download

EPUBCheck is a tool to validate the conformance of EPUB publications against the EPUB specifications. EPUBCheck can be run as a standalone command-line tool or used as a Java library.

There is a newer version: 4.1.1
Show newest version
package com.adobe.epubcheck.util;

/**
 * Invalid date exception.
 * Exception to signal an invalid date.
 */
public class InvalidDateException extends Exception
{

  /**
   * Creates an exception to signal an invalid date.
   *
   * @param message message associated with the exception
   */
  public InvalidDateException(String message)
  {
    super(message);
  }

  private static final long serialVersionUID = -8476118619257777307L;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy