source: trunk/modelicaml/org.openmodelica.modelicaml.gen.modelica/src/org/modelica/ConnectException.java @ 889

Last change on this file since 889 was 844, checked in by wschamai, 13 years ago
  • Doc. header update
  • Modelica <<Import>> stereotype handling
File size: 2.1 KB
Line 
1/*
2 * This file is part of OpenModelica.
3 *
4 * Copyright (c) 1998-CurrentYear, Open Source Modelica Consortium (OSMC),
5 * c/o Linköpings universitet, Department of Computer and Information Science,
6 * SE-58183 Linköping, Sweden.
7 *
8 * All rights reserved.
9 *
10 * THIS PROGRAM IS PROVIDED UNDER THE TERMS OF GPL VERSION 3 LICENSE OR
11 * THIS OSMC PUBLIC LICENSE (OSMC-PL).
12 * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
13 * OF THE OSMC PUBLIC LICENSE OR THE GPL VERSION 3, ACCORDING TO RECIPIENTS CHOICE.
14 *
15 * The OpenModelica software and the Open Source Modelica
16 * Consortium (OSMC) Public License (OSMC-PL) are obtained
17 * from OSMC, either from the above address,
18 * from the URLs: http://www.ida.liu.se/projects/OpenModelica or 
19 * http://www.openmodelica.org, and in the OpenModelica distribution.
20 * GNU version 3 is obtained from: http://www.gnu.org/copyleft/gpl.html.
21 *
22 * This program is distributed WITHOUT ANY WARRANTY; without
23 * even the implied warranty of  MERCHANTABILITY or FITNESS
24 * FOR A PARTICULAR PURPOSE, EXCEPT AS EXPRESSLY SET FORTH
25 * IN THE BY RECIPIENT SELECTED SUBSIDIARY LICENSE CONDITIONS OF OSMC-PL.
26 *
27 * See the full OSMC Public License conditions for more details.
28 *
29 * Main author: Wladimir Schamai, EADS Innovation Works / Linköping University, 2009-now
30 *
31 * Contributors:
32 *   Uwe Pohlmann, University of Paderborn 2009-2010, contribution to the Modelica code generation for state machine behavior, contribution to Papyrus GUI adoptations
33 *   Parham Vasaiely, EADS Innovation Works / Hamburg University of Applied Sciences 2009-2011, implementation of simulation plugins
34 */
35
36package org.modelica;
37
38// TODO: Auto-generated Javadoc
39/**
40 * Thrown when there is an error while connecting to the compiler.
41 *
42 * @author Andreas Remar
43 */
44public class ConnectException extends CompilerException
45{
46   
47    /** The Constant serialVersionUID. */
48    private static final long serialVersionUID = 5391049301949772469L;
49
50    /**
51     * Instantiates a new connect exception.
52     *
53     * @param error
54     *            the error
55     */
56    public ConnectException(String error)
57    {
58        super(error);
59    }
60
61}
Note: See TracBrowser for help on using the repository browser.