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

fun.fengwk.automapper.processor.AutoMapperException Maven / Gradle / Ivy

package fun.fengwk.automapper.processor;

/**
 * @author fengwk
 */
public class AutoMapperException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public AutoMapperException(Throwable cause) {
        super(cause);
    }

    public AutoMapperException(String message) {
        super(message);
    }

    public AutoMapperException(String message, Object... args) {
        super(String.format(message, args));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy