root/trunk/matml/src/sphlow/PlotDataException.java
| Revision 148, 1.5 kB (checked in by powell, 7 years ago) | |
|---|---|
|
|
| Line | |
|---|---|
| 1 | /* A labeled box for signal plots. |
| 2 | |
| 3 | @Copyright (c) 1997-1998 The Regents of the University of California. |
| 4 | All rights reserved. |
| 5 | |
| 6 | Permission is hereby granted, without written agreement and without |
| 7 | license or royalty fees, to use, copy, modify, and distribute this |
| 8 | software and its documentation for any purpose, provided that the |
| 9 | above copyright notice and the following two paragraphs appear in all |
| 10 | copies of this software. |
| 11 | |
| 12 | IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY |
| 13 | FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES |
| 14 | ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF |
| 15 | THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF |
| 16 | SUCH DAMAGE. |
| 17 | |
| 18 | THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, |
| 19 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 20 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE |
| 21 | PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF |
| 22 | CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, |
| 23 | ENHANCEMENTS, 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 | */ |
| 37 | class 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.