blob: fff00489adc9a1ea49f40651951998b21bda16b8 [file] [log] [blame]
package org.bouncycastle.cms;
import java.io.IOException;
public class CMSStreamException
extends IOException
{
private final Throwable underlying;
CMSStreamException(String msg)
{
super(msg);
this.underlying = null;
}
CMSStreamException(String msg, Throwable underlying)
{
super(msg);
this.underlying = underlying;
}
public Throwable getCause()
{
return underlying;
}
}