package org.dcache.webadmin.controller.exceptions; /** * * @author jans */ public class InfoServiceException extends Exception { private static final long serialVersionUID = 8960651576576871452L; /** * 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 InfoServiceException(String msg, Throwable cause) { super(msg, cause); } /** * Constructor with error message and root cause. * * @param cause * the root cause of the exception */ public InfoServiceException(Throwable cause) { super(cause); } }