Below is my source code and the error
MultipartParser parser;
parser = new MultipartParser(request, 1024 * 1024 * 1024);  //this line generates error
/* file limit size of 1GB*/
Part _part;
while ((_part = parser.readNextPart()) != null) {
    if (_part.isFile()) {
       FilePart fPart = (FilePart) _part; 
       inputStream = fPart.getInputStream();
    }
}
Below are my headers : enter image description here
Below is my error:

 
    