![JAR search and dependency download from the Maven repository](/logo.png)
com.futureble.cryptography.exception.KeyPairException Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2016-2021 the original author or authors.
* cryptography is licensed under Mulan PubL v2.
* You can use this software according to the terms and conditions of the Mulan PubL v2.
* You may obtain a copy of Mulan PubL v2 at:
* http://license.coscl.org.cn/MulanPubL-2.0
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PubL v2 for more details.
*/
package com.futureble.cryptography.exception;
import com.futureble.standard.annotation.Except;
/**
* Unchecked exception to key pair.
*
* @author 陈光毅
* @since 1.0
*/
@Except
public class KeyPairException extends CypherException {
private static final long serialVersionUID = 1332356541811205665L;
public KeyPairException() {
super();
}
public KeyPairException(String message) {
super(message);
}
public KeyPairException(String message, Throwable cause) {
super(message, cause);
}
public KeyPairException(Throwable cause) {
super(cause);
}
protected KeyPairException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy