/** * Project: doris.config.server-1.0-SNAPSHOT * * File Created at 2011-4-28 * $Id$ * * Copyright 1999-2100 Alibaba.com Corporation Limited. * All rights reserved. * * This software is the confidential and proprietary information of * Alibaba Company. ("Confidential Information"). You shall not * disclose such Confidential Information and shall use it only in * accordance with the terms of the license agreement you entered into * with Alibaba.com. */ package com.alibaba.doris.admin.service.common.route; /** * TODO Comment of DorisConfigServiceException * @author mianhe * */ public class DorisConfigServiceException extends Exception { /** * @param errMsg */ public DorisConfigServiceException(String errMsg) { super(errMsg); } /** * */ private static final long serialVersionUID = -8247417540976501023L; }