1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-09-07 06:55:59 +02:00
Gadgetbridge/app/src/main/java/org/bouncycastle/shaded/crypto/RuntimeCryptoException.java
José Rebelo 543c8b28d0 Rename org.bouncycastle package
Fixes roboelectric in unit tests.
2023-11-25 21:16:53 +00:00

27 lines
533 B
Java

package org.bouncycastle.shaded.crypto;
/**
* the foundation class for the exceptions thrown by the crypto packages.
*/
public class RuntimeCryptoException
extends RuntimeException
{
/**
* base constructor.
*/
public RuntimeCryptoException()
{
}
/**
* create a RuntimeCryptoException with the given message.
*
* @param message the message to be carried with the exception.
*/
public RuntimeCryptoException(
String message)
{
super(message);
}
}