blob: 2ad02e0cd8fdd37e89f402a95698b9c5d8106931 [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2017 Fondazione Bruno Kessler.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Alberto Debiasi - initial API and implementation
******************************************************************************/
package org.polarsys.chess.service.core.exceptions;
/**
*
*
*/
public class NoComponentException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
*
*/
public NoComponentException() {
super("No component is selected. Please select a component from the model.");
}
}