package org.dcache.webadmin.controller.exceptions; /** * * @author jans */ public class CellAdminServiceException extends Exception { private static final long serialVersionUID = 8711986861755203802L; /** * Constructor with error message and root cause. * * @param msg * the error message associated with the exception * @param cause * the root cause of the exception */ public CellAdminServiceException(String msg, Throwable cause) { super(msg, cause); } /** * Constructor with error message and root cause. * * @param cause * the root cause of the exception */ public CellAdminServiceException(Throwable cause) { super(cause); } }