AddonAlreadyInstalledException.groovy

/*
 * Copyright (C) 2003-2014 eXo Platform SAS.
 *
 * This file is part of eXo Platform - Add-ons Manager.
 *
 * eXo Platform - Add-ons Manager is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 3 of
 * the License, or (at your option) any later version.
 *
 * eXo Platform - Add-ons Manager software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with eXo Platform - Add-ons Manager; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see <http://www.gnu.org/licenses/>.
 */
package org.exoplatform.platform.am.ex
import org.exoplatform.platform.am.Addon

import static org.exoplatform.platform.am.AddonsManagerConstants.RETURN_CODE_ADDON_ALREADY_INSTALLED
/**
 * @author Arnaud Héritier <aheritier@exoplatform.com>
 */
class AddonAlreadyInstalledException extends AddonsManagerException {

  AddonAlreadyInstalledException(Addon addon) {
    super("Add-on ${addon.id} already installed in version ${addon.version}. Use --force option to reinstall it")
  }

  @Override
  int getErrorCode() {
    return RETURN_CODE_ADDON_ALREADY_INSTALLED
  }
}