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

io.gravitee.node.api.license.InvalidLicenseException Maven / Gradle / Ivy

There is a newer version: 7.0.2
Show newest version
package io.gravitee.node.api.license;

import java.io.Serial;

/**
 * {@link InvalidLicenseException} allows to identify that a license has an invalid signature or is expired.
 *
 * @author Jeoffrey HAEYAERT (jeoffrey.haeyaert at graviteesource.com)
 * @author GraviteeSource Team
 *
 * @see MalformedLicenseException
 */
public class InvalidLicenseException extends Exception {

    @Serial
    private static final long serialVersionUID = -1669115414217408129L;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy