blob: 72f7030324dfb069341a69170f8a36214c4fff73 [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2018 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:
* Luca Cristoforetti - initial API and implementation
******************************************************************************/
package org.polarsys.chess.OSSImporter.core.exceptions;
/**
* An exception that could arise during the import.
* @author cristofo
*
*/
public class ImportException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Constructor
* @param message the message that defines the exception
*/
public ImportException(String message) {
super(message);
}
}