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

com.buger.patcher.exception.FieldValueResolverException Maven / Gradle / Ivy

Go to download

Java Object Patcher is simple, dependency-free and fast library which makes patching/merging objects simple.

The newest version!
package com.buger.patcher.exception;

/**
 * @author Created by Buheria Oleksii {@literal [email protected]}
 * @version 1.0
 * @since 29-09-2020
 */
public class FieldValueResolverException extends Exception {

    public FieldValueResolverException() {
        super();
    }

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

    public FieldValueResolverException(String message, Throwable cause) {
        super(message, cause);
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy