![JAR search and dependency download from the Maven repository](/logo.png)
com.contentstack.cms.core.CMARuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cms Show documentation
Show all versions of cms Show documentation
Contentstack Java Management SDK for Content Management API, Contentstack is a headless CMS with an
API-first approach
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