Package npanday.vendor

Examples of npanday.vendor.InvalidVersionFormatException


    private String[] tokenizeVersion( String version )
        throws InvalidVersionFormatException
    {
        if ( !isVersionId( version ) )
        {
            throw new InvalidVersionFormatException( "Invalid Version Id: ID = " + version );
        }
        return version.split( "[._-]" );
    }
View Full Code Here

TOP

Related Classes of npanday.vendor.InvalidVersionFormatException

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.