2015-07-20 23:15:32 +00:00
|
|
|
package eu.siacs.conversations.crypto.axolotl;
|
|
|
|
|
|
|
|
public class CryptoFailedException extends Exception {
|
2017-01-14 17:10:04 +00:00
|
|
|
|
|
|
|
public CryptoFailedException(String msg) {
|
|
|
|
super(msg);
|
|
|
|
}
|
|
|
|
|
2015-07-20 23:15:32 +00:00
|
|
|
public CryptoFailedException(Exception e){
|
|
|
|
super(e);
|
|
|
|
}
|
|
|
|
}
|