93949596979899100101102103
{ result = new ConstructorConverter(source, targetType, targetType.getConstructor(source)); } catch (NoSuchMethodException noConstructor) { throw new ConverterNotFoundException(source, target); } } } }
8788899091929394959697
{ result = new ConstructorConverter<>(source, target, target.getConstructor(source)); } catch (NoSuchMethodException noConstructor) { throw new ConverterNotFoundException(source, target); } } } }
6465666768697071727374
{ result = new ConstructorConverter<S, T>(source, target, target.getConstructor(source)); } catch (NoSuchMethodException noConstructor) { throw new ConverterNotFoundException(source, target); } } } }