| Author |
Interpreting stack message characters
|
A Flatoff
Greenhorn
Joined: Mar 22, 2005
Posts: 12
|
|
Anyone know what's up with the characters toward the end of this line: java.lang.NoSuchMethodError: javax.mail.internet.MimeMultipart.addBodyPart(Ljavax/mail/BodyPart;I)V "L" ";I" and "V" seem out of place here. I bet they mean something just don't know what. Like V might mean void return type . . .
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
L in front of a class name usually indicates an array of that type. Are you trying to add multiple body parts at once? Because there are only two addBodyPart methods; one takes a BodyPart, and the other a BodyPart and an integer.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
A Flatoff
Greenhorn
Joined: Mar 22, 2005
Posts: 12
|
|
I'm actually setting up a new app with Commons Email to send multiple email attachments. I have to figure out all my version dependencies and stuff. J2EE level / Commons Email level, etc. Right now I apparently have an invalid combination.
|
 |
 |
|
|
subject: Interpreting stack message characters
|
|
|