Package br.com.caelum.vraptor.vraptor2

Examples of br.com.caelum.vraptor.vraptor2.ConfigException


     *
     * @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;
    }
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.vraptor2.ConfigException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.