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

org.simpleflatmapper.reflect.impl.EmptyConstructorBiInstantiator Maven / Gradle / Ivy

package org.simpleflatmapper.reflect.impl;

import org.simpleflatmapper.reflect.BiInstantiator;
import org.simpleflatmapper.reflect.Instantiator;
import org.simpleflatmapper.util.ErrorHelper;

import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;

public final class EmptyConstructorBiInstantiator implements BiInstantiator {

	private final Constructor constructor;

	public EmptyConstructorBiInstantiator(final Constructor constructor) {
		this.constructor = constructor;
	}

	@Override
	public T newInstance(S1 s1, S2 s2) throws Exception {
		try {
			return constructor.newInstance();
		} catch(InvocationTargetException e) {
			return ErrorHelper.rethrow(e.getCause());
		}
	}

    @Override
    public String toString() {
        return "EmptyConstructorInstantiator{" +
                "constructor=" + constructor +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy