Package org.apache.cocoon.servlet.multipart

Examples of org.apache.cocoon.servlet.multipart.MultipartException


     *
     * @throws org.apache.cocoon.servlet.multipart.MultipartException
     */
    public void nextPart() throws MultipartException {
        if (state != STATE_NEXTPART) {
            throw new MultipartException("Illegal state");
        }
        state = STATE_READING;
    }
View Full Code Here

TOP

Related Classes of org.apache.cocoon.servlet.multipart.MultipartException

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.