aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/util/io/StreamOverflowException.java
blob: 8b50bd63133dd33776f1ab7d9f942de094da7896 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.spongycastle.util.io;

import java.io.IOException;

public class StreamOverflowException
    extends IOException
{
    public StreamOverflowException(String msg)
    {
        super(msg);
    }
}