blob: 0b86cc27ea6e595a8020c4abbca3d9d58a2d953b [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 v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.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.");
}
}