1package org.bouncycastle.operator;
2
3import java.io.IOException;
4
5public class OperatorStreamException
6    extends IOException
7{
8    private Throwable cause;
9
10    public OperatorStreamException(String msg, Throwable cause)
11    {
12        super(msg);
13
14        this.cause = cause;
15    }
16
17    public Throwable getCause()
18    {
19        return cause;
20    }
21}
22