All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.futureble.cryptography.exception.DigestException 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 Digest.
 *
 * @author 陈光毅
 * @since 1.0
 */
@Except
public class DigestException extends CypherException {

    private static final long serialVersionUID = -8429672114608798685L;

    public DigestException() {
        super();
    }

    public DigestException(String message) {
        super(message);
    }

    public DigestException(String message, Throwable cause) {
        super(message, cause);
    }

    public DigestException(Throwable cause) {
        super(cause);
    }

    protected DigestException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy