com.github.msarhan.ummalqura.calendar.DateTimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ummalqura-calendar Show documentation
Show all versions of ummalqura-calendar Show documentation
Implements the Umm Al-Qura calendar system in Java language.
package com.github.msarhan.ummalqura.calendar;
/**
* @author Mouaffak A. Sarhan
*/
public class DateTimeException extends RuntimeException {
public DateTimeException(String message) {
super(message);
}
public DateTimeException(String message, Exception ex) {
super(message, ex);
}
}