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

com.adobe.cq.targetrecommendations.api.TargetRecommendationsException Maven / Gradle / Ivy

There is a newer version: 6.5.21
Show newest version
package com.adobe.cq.targetrecommendations.api;

public class TargetRecommendationsException extends Exception {
    private static final long serialVersionUID = 4789851714947284569L;

    public TargetRecommendationsException() {
    }

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

    public TargetRecommendationsException(Throwable throwable) {
        super(throwable);
    }

    public TargetRecommendationsException(String message, Throwable throwable) {
        super(message, throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy