Java tutorial
/** * * Magnolia and its source-code is licensed under the LGPL. * You may copy, adapt, and redistribute this file for commercial or non-commercial use. * When copying, adapting, or redistributing this document in keeping with the guidelines above, * you are required to provide proper attribution to obinary. * If you reproduce or distribute the document without making any substantive modifications to its content, * please use the following attribution line: * * Copyright 1993-2006 obinary Ltd. (http://www.obinary.com) All rights reserved. * */ package info.magnolia.exchange; import info.magnolia.cms.core.BaseException; import org.apache.commons.lang.StringUtils; /** * Date: May 4, 2004 Time: 5:31:19 PM * @author Sameer Charles */ public class ChannelException extends BaseException { /** * Stable serialVersionUID. */ private static final long serialVersionUID = 222L; public ChannelException() { super(StringUtils.EMPTY); } public ChannelException(String message) { super(message); } public ChannelException(String message, Exception cause) { super(message, (cause instanceof ChannelException) ? ((ChannelException) cause).getCause() : cause); } public ChannelException(Exception root) { super(root); } }