
com.sdl.webapp.common.exceptions.DxaRuntimeException 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 DxaRuntimeException extends RuntimeException {
public DxaRuntimeException() {
super();
}
public DxaRuntimeException(String message) {
super(message);
}
public DxaRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public DxaRuntimeException(Throwable cause) {
super(cause);
}
}