blob: 01af8da90be2968893b413d7da56238dc88070d7 [file] [log] [blame]
package org.bouncycastle.util.io;
import java.io.IOException;
public class StreamOverflowException
extends IOException
{
public StreamOverflowException(String msg)
{
super(msg);
}
}