aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger/crypto/axolotl/CryptoFailedException.java
blob: 3933df006a7229d9c1a0583d67299d68d489b3ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package de.pixart.messenger.crypto.axolotl;

public class CryptoFailedException extends Exception {

    public CryptoFailedException(String msg) {
        super(msg);
    }

    public CryptoFailedException(String msg, Exception e) {
        super(msg, e);
    }

    public CryptoFailedException(Exception e) {
        super(e);
    }
}