initial import
[iDMC.git] / src / java / org / tsho / dmc2 / ui / InvalidData.java
blob81678d85d9cebd78c40354dae3dbf10a9c76eaf9
1 /*
2 * iDMC the interactive Dynamical Model Calculator simulates and performs
3 * graphical and numerical analysis of systems of differential and
4 * difference equations.
6 * Copyright (C) 2004 Marji Lines and Alfredo Medio.
8 * Written by Daniele Pizzoni <auouo@tin.it>.
9 * Extended by Alexei Grigoriev <alexei_grigoriev@libero.it>.
13 * The software program was developed within a research project financed
14 * by the Italian Ministry of Universities, the Universities of Udine and
15 * Ca'Foscari of Venice, the Friuli-Venezia Giulia Region.
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or any
20 * later version.
22 * This program is distributed in the hope that it will be useful, but
23 * WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 * General Public License for more details.
27 package org.tsho.dmc2.ui;
29 /**
30 * Exception thrown when the data available on the UI is not valid.
31 * Such as in a needed field left blank or a negative variation count, etc.
33 * @author Daniele Pizzoni <auouo@tin.it>
35 public class InvalidData extends Exception {
37 /**
40 public InvalidData() {
41 super();
42 // TODO Auto-generated constructor stub
45 /**
46 * @param message
48 public InvalidData(String message) {
49 super(message);
50 // TODO Auto-generated constructor stub
53 /**
54 * @param message
55 * @param cause
57 public InvalidData(String message, Throwable cause) {
58 super(message, cause);
59 // TODO Auto-generated constructor stub
62 /**
63 * @param cause
65 public InvalidData(Throwable cause) {
66 super(cause);
67 // TODO Auto-generated constructor stub