*
* @throws com.github.stephenc.javaisotools.iso9660.ConfigException Invalid length
*/
public void setMaxFilenameLength(int length) throws ConfigException {
if (length < 0) {
throw new ConfigException(this, "Invalid maximum directory length: " + length);
}
RockRidgeNamingConventions.MAX_FILENAME_LENGTH = length;
}