aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/prov/src/main/java/org/spongycastle/jce/exception/ExtIOException.java
blob: 38bea13857b2b2649d91481109083bee8e61e976 (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.jce.exception;

import java.io.IOException;

public class ExtIOException
    extends IOException
    implements ExtException
{
    private Throwable cause;

    public ExtIOException(String message, Throwable cause)
    {
        super(message);
        this.cause = cause;
    }

    public Throwable getCause()
    {
        return cause;
    }
}