root/trunk/matml/src/sphlow/PlotDataException.java

Revision 148, 1.5 kB (checked in by powell, 7 years ago)

New Sphlow Java applet.

  • Property svn:keywords set to Author Date Id Revision
Line 
1/* A labeled box for signal plots.
2
3@Copyright (c) 1997-1998 The Regents of the University of California.
4All rights reserved.
5
6Permission is hereby granted, without written agreement and without
7license or royalty fees, to use, copy, modify, and distribute this
8software and its documentation for any purpose, provided that the
9above copyright notice and the following two paragraphs appear in all
10copies of this software.
11
12IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY
13FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
15THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
16SUCH DAMAGE.
17
18THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
19INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
20MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
21PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
22CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
23ENHANCEMENTS, OR MODIFICATIONS.
24
25                                                PT_COPYRIGHT_VERSION_2
26                                                COPYRIGHTENDKEY
27*/
28//package ptplot;
29
30/**
31 * Exception thrown by plot classes if there are format
32 * problems with the data to be plotted.
33 *
34 * @author Christopher Hylands
35 * @version @(#)PlotDataException.java  1.8    01/02/98
36 */
37class PlotDataException extends Throwable {
38    public PlotDataException() { super(); }
39    public PlotDataException(String s) { super(s); }
40 
41}
Note: See TracBrowser for help on using the browser.