![JAR search and dependency download from the Maven repository](/logo.png)
com.oceanprotocol.squid.exceptions.EncryptionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of squid Show documentation
Show all versions of squid Show documentation
Squid facilitate the interaction of java clients with the Ocean Protocol network
/*
* Copyright 2018 Ocean Protocol Foundation
* SPDX-License-Identifier: Apache-2.0
*/
package com.oceanprotocol.squid.exceptions;
/**
* Business Exception related with Encrypt/Decrypt issues
*/
public class EncryptionException extends OceanException {
public EncryptionException(String message, Throwable e) {
super(message, e);
}
public EncryptionException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy