blob: 962d2093d44cdbbd2c1ad55e7e21495b0045f3a4 [file] [log] [blame]
package javax.mail;
/**
* Mock class providing the declarations required to compile the Cocoon code when
* the actual library is not present.
*
* @version CVS $Id:
*/
public abstract class BodyPart implements Part {
public void setContent(Object a, String b) {
throw new NoSuchMethodError("This is a mock object");
}
}