Added exceptions to the diUpload method

This commit is contained in:
Ziver Koc 2010-11-04 16:30:49 +00:00
parent 39c6303bfb
commit 36a0722714

View file

@ -230,7 +230,8 @@ public abstract class AjaxFileUpload extends HttpServlet {
/**
* Handle the uppload
* @throws ServletException
*/
public abstract void doUpload(HttpServletRequest request, HttpServletResponse response,
Map<String,String> fields, List<FileItem> files);
Map<String,String> fields, List<FileItem> files) throws ServletException;
}