1package org.bouncycastle.util.io;
2
3import java.io.IOException;
4
5/**
6 * Exception thrown when too much data is written to an InputStream
7 */
8public class StreamOverflowException
9    extends IOException
10{
11    public StreamOverflowException(String msg)
12    {
13        super(msg);
14    }
15}
16