org.catools.common.facker.exception.CFakerParameterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-randomize Show documentation
Show all versions of common-randomize Show documentation
The Common Randomize Implementation
package org.catools.common.facker.exception;
import org.catools.common.exception.CRuntimeException;
public class CFakerParameterException extends CRuntimeException {
public CFakerParameterException(String description) {
super(description);
}
public CFakerParameterException(String message, Throwable cause) {
super(message, cause);
}
}