com.sdl.dxa.modules.docs.mashup.exception.DocsMashupException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dxa-module-tridion-docs-mashup Show documentation
Show all versions of dxa-module-tridion-docs-mashup Show documentation
Implementation of DXA Tridion Docs Mashup module
package com.sdl.dxa.modules.docs.mashup.exception;
/**
* Exception happened in docs mashup functionality.
*/
public class DocsMashupException extends Exception {
public DocsMashupException() {
super();
}
public DocsMashupException(String message) {
super(message);
}
public DocsMashupException(String message, Throwable cause) {
super(message, cause);
}
public DocsMashupException(Throwable cause) {
super(cause);
}
protected DocsMashupException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy