blob: 38a4fdbd558f91ed777dff230cc438c8b96522ec [file] [log] [blame]
package org.apache.harmony.security.tests.support.cert;
import java.security.cert.CertificateEncodingException;
public class MyFailingCertPath extends MyCertPath {
public MyFailingCertPath(byte[] encoding) {
super(encoding);
}
@Override
public byte[] getEncoded() throws CertificateEncodingException {
throw new CertificateEncodingException("testing purpose");
}
}