
prng.seeds.StorageException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SecurePRNG-core Show documentation
Show all versions of SecurePRNG-core Show documentation
The core random number generators
package prng.seeds;
/**
* A problem occurred with seed storage
*
* @author Simon Greatrix
*/
public class StorageException extends Exception {
/** serial version UID */
private static final long serialVersionUID = 1L;
/**
* New exception
*
* @param message explanatory message
* @param cause causative exception
*/
public StorageException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy