com.hashmapinc.tempus.exception.QuantityClassSetException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tempus-unit-conversion Show documentation
Show all versions of tempus-unit-conversion Show documentation
Provide API's for unit conversion
The newest version!
package com.hashmapinc.tempus.exception;
public class QuantityClassSetException extends Exception {
public QuantityClassSetException(String message) {
super(message);
}
public QuantityClassSetException(String message , Throwable cause) {
super(message , cause);
}
}