tony 2003/10/17 11:12:39
Added: src/blocks/mail/mocks/javax/mail
AuthenticationFailedException.java
Log:
yet another mock object for the imapgenerator
Revision Changes Path
1.1
cocoon-2.1/src/blocks/mail/mocks/javax/mail/AuthenticationFailedException.java
Index: AuthenticationFailedException.java
===================================================================
package javax.mail;
/**
* Mock class providing the declarations required to compile the Cocoon code
when
* the actual library is not present.
*
*/
public class AuthenticationFailedException extends MessagingException {
public AuthenticationFailedException() {
throw new NoSuchMethodError("This is a mock object");
}
public AuthenticationFailedException(String s) {
throw new NoSuchMethodError("This is a mock object");
}
}