
com.sdl.webapp.common.api.content.ContentProviderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dxa-common Show documentation
Show all versions of dxa-common Show documentation
DXA Common project contains framework common classes shared between all other artifacts
package com.sdl.webapp.common.api.content;
import com.sdl.webapp.common.exceptions.DxaException;
/**
* Thrown when an error occurs related to a content provider.
*/
public class ContentProviderException extends DxaException {
public ContentProviderException() {
}
public ContentProviderException(String message) {
super(message);
}
public ContentProviderException(String message, Throwable cause) {
super(message, cause);
}
public ContentProviderException(Throwable cause) {
super(cause);
}
public ContentProviderException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy