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

org.catools.common.facker.exception.CFakerParameterException Maven / Gradle / Ivy

There is a newer version: 0.1.25
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy