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

com.day.cq.wcm.api.WCMRuntimeException Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
package com.day.cq.wcm.api;

public class WCMRuntimeException extends RuntimeException {
    public WCMRuntimeException(String message) {
        super(message);
    }

    public WCMRuntimeException(String message, Throwable cause) {
        super(message, cause);
    }

    public WCMRuntimeException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy