aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/operator/OperatorStreamException.java
blob: 960d292fe05d8da7ef9d9e0067020c2d5a52455c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.spongycastle.operator;

import java.io.IOException;

public class OperatorStreamException
    extends IOException
{
    private Throwable cause;

    public OperatorStreamException(String msg, Throwable cause)
    {
        super(msg);

        this.cause = cause;
    }

    public Throwable getCause()
    {
        return cause; 
    }
}