private InputFileWrapper()

in src/main/java/org/apache/maven/doxia/wrapper/InputFileWrapper.java [47:55]


    private InputFileWrapper(String absolutePath, DefaultConverter.DoxiaFormat format, String charsetName)
            throws UnsupportedEncodingException, FileNotFoundException {
        super(absolutePath, charsetName);

        this.format = format;
        if (!getFile().exists()) {
            throw new FileNotFoundException("The file '" + getFile().getAbsolutePath() + "' doesn't exist.");
        }
    }