public UnsupportedFormatException()

in src/main/java/org/apache/maven/doxia/UnsupportedFormatException.java [55:60]


    public UnsupportedFormatException(String format, String[] supportedFormat, Throwable cause) {
        super(
                "Unsupported format '" + format + "'. The allowed format are: "
                        + StringUtils.join(supportedFormat, ", "),
                cause);
    }