
com.sdl.webapp.common.exceptions.DxaException 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.exceptions;
public class DxaException extends Exception {
public DxaException() {
}
public DxaException(String message, Throwable innerException) {
super(message, innerException);
}
public DxaException(String message) {
super(message);
}
public DxaException(Throwable cause) {
super(cause);
}
public DxaException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy