blob: ba35d08480c8283c1c34bcd01b9820818e72db49 [file] [log] [blame]
package org.bouncycastle.asn1.misc;
import org.bouncycastle.asn1.*;
public class NetscapeRevocationURL
extends DERIA5String
{
public NetscapeRevocationURL(
DERIA5String str)
{
super(str.getString());
}
public String toString()
{
return "NetscapeRevocationURL: " + this.getString();
}
}