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

com.sap.hcp.cf.logging.servlet.dynlog.DynamicLogLevelException Maven / Gradle / Ivy

There is a newer version: 3.8.4
Show newest version
package com.sap.hcp.cf.logging.servlet.dynlog;

import javax.servlet.ServletException;

import com.auth0.jwt.exceptions.JWTVerificationException;

public class DynamicLogLevelException extends ServletException {

    private static final long serialVersionUID = 1L;

    public DynamicLogLevelException(String message, JWTVerificationException cause) {
        super(message, cause);
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy