com.day.cq.wcm.undo.BinaryHandlingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
package com.day.cq.wcm.undo;
/**
* This class represents an exception while handling binary data.
*/
public class BinaryHandlingException extends Exception {
/**
* Creates a new BinaryHandlingException
.
*
* @param msg The message text
*/
public BinaryHandlingException(String msg) {
super(msg);
}
/**
* Creates a new BinaryHandlingException
.
*
* @param msg The message text
* @param cause The root cause
*/
public BinaryHandlingException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy