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

com.contentstack.cms.core.CMARuntimeException Maven / Gradle / Ivy

Go to download

Contentstack Java Management SDK for Content Management API, Contentstack is a headless CMS with an API-first approach

There is a newer version: 1.5.0
Show newest version
package com.contentstack.cms.core;

/**
 * CMARuntimeException that extends Exception class
 *
 * @author ishaileshmishra
 * @version v0.1.0
 * @since 2022-10-20
 */
public class CMARuntimeException extends Exception {

    /**
     * The code `public CMARuntimeException(String message) { super(message); }` is
     * defining a constructor
     * for the `CMARuntimeException` class.
     *
     * @param message the message for exception
     */
    public CMARuntimeException(String message) {
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy