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

com.sdl.webapp.common.exceptions.DxaRuntimeException Maven / Gradle / Ivy

Go to download

DXA Common project contains framework common classes shared between all other artifacts

There is a newer version: 2.3.5
Show newest version
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);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy