public T write()

in src/main/java/com/amazon/rdsdata/client/ConstructorObjectWriter.java [74:80]


    public T write(ExecutionResult.Row row) {
        try {
            return constructor.newInstance(buildArgumentsList(row));
        } catch (InvocationTargetException | IllegalAccessException | InstantiationException e) {
            throw MappingException.cannotCreateInstance(constructor.getDeclaringClass(), e);
        }
    }