blob: 9e813396c74627c9b0893b097feb0b7195595cb0 [file] [log] [blame]
package org.bouncycastle.cert.path;
class CertPathValidationResultBuilder
{
public CertPathValidationResult build()
{
return new CertPathValidationResult(null, 0, 0, null);
}
public void addException(CertPathValidationException exception)
{
//To change body of created methods use File | Settings | File Templates.
}
}