
com.adobe.cq.dam.cfm.ContentFragmentException Maven / Gradle / Ivy
package com.adobe.cq.dam.cfm;
/**
* This class represents a generic exception in handling content fragments.
*/
public class ContentFragmentException extends Exception {
/**
* Create a new content fragment exception.
*
* @param msg A message describing the exception
*/
public ContentFragmentException(String msg) {
super(msg);
}
/**
* Creates a new nested content fragment exception.
*
* @param msg A message describing the exception
* @param cause The cause of the exception
*/
public ContentFragmentException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy