blob: e3cab8a5811f8609f8815b6befe43fbff911ed50 [file] [log] [blame]
package org.bouncycastle.cms;
public class CMSAttributeTableGenerationException
extends CMSRuntimeException
{
Exception e;
public CMSAttributeTableGenerationException(
String name)
{
super(name);
}
public CMSAttributeTableGenerationException(
String name,
Exception e)
{
super(name);
this.e = e;
}
public Exception getUnderlyingException()
{
return e;
}
public Throwable getCause()
{
return e;
}
}