Package org.apache.roller.planet.ui.rendering.util

Examples of org.apache.roller.planet.ui.rendering.util.InvalidRequestException


       
        // parse the request object and figure out what we've got
        log.debug("parsing path "+pathInfo);
       
        if(pathInfo != null) {
            throw new InvalidRequestException("not a valid planet opml page, "+
                    request.getRequestURL());
        }
    }
View Full Code Here


        if(pathInfo != null && pathInfo.trim().length() > 1) {
           
            this.format = pathInfo;
           
        } else {
            throw new InvalidRequestException("not a valid planet group feed, "+
                    request.getRequestURL());
        }
       
        if(log.isDebugEnabled()) {
            log.debug("format = "+this.format);
View Full Code Here

TOP

Related Classes of org.apache.roller.planet.ui.rendering.util.InvalidRequestException

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.