tech.relaycorp.veraid.VeraidException.kt Maven / Gradle / Ivy
The newest version!
package tech.relaycorp.veraid
/**
* Base class for all VeraId exceptions.
*/
public abstract class VeraidException(message: String, cause: Throwable? = null) :
Exception(message, cause)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy