org.catools.common.date.CInvalidDateFormatException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
The common objects which use in all other CATools projects
package org.catools.common.date;
import org.catools.common.exception.CRuntimeException;
/**
* Signals that attempt to convert provided value to Date value failed.
*/
public class CInvalidDateFormatException extends CRuntimeException {
public CInvalidDateFormatException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy