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

com.day.cq.wcm.undo.BinaryHandlingException Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy