|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
DocNameMissingException.java | - | 0% | 0% | 0% |
|
1 |
/*
|
|
2 |
* SimplyHTML, a word processor based on Java, HTML and CSS
|
|
3 |
* Copyright (C) 2002 Ulrich Hilger
|
|
4 |
*
|
|
5 |
* This program is free software; you can redistribute it and/or
|
|
6 |
* modify it under the terms of the GNU General Public License
|
|
7 |
* as published by the Free Software Foundation; either version 2
|
|
8 |
* of the License, or (at your option) any later version.
|
|
9 |
*
|
|
10 |
* This program is distributed in the hope that it will be useful,
|
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13 |
* GNU General Public License for more details.
|
|
14 |
*
|
|
15 |
* You should have received a copy of the GNU General Public License
|
|
16 |
* along with this program; if not, write to the Free Software
|
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
18 |
*/
|
|
19 |
|
|
20 |
/**
|
|
21 |
* Signals that the name of a document in SimplyHTML is not yet set.
|
|
22 |
*
|
|
23 |
* @author Ulrich Hilger
|
|
24 |
* @author Light Development
|
|
25 |
* @author <a href="http://www.lightdev.com">http://www.lightdev.com</a>
|
|
26 |
* @author <a href="mailto:info@lightdev.com">info@lightdev.com</a>
|
|
27 |
* @author published under the terms and conditions of the
|
|
28 |
* GNU General Public License,
|
|
29 |
* for details see file gpl.txt in the distribution
|
|
30 |
* package of this software
|
|
31 |
*
|
|
32 |
* @version stage 11, April 27, 2003
|
|
33 |
*/
|
|
34 |
public class DocNameMissingException extends Exception { |
|
35 |
/**
|
|
36 |
* Constructs a <code>DocNameMissingException</code> with <code>null</code>
|
|
37 |
* as its error detail message.
|
|
38 |
*/
|
|
39 | 0 |
public DocNameMissingException() {
|
40 | 0 |
super();
|
41 |
} |
|
42 |
|
|
43 |
/**
|
|
44 |
* Constructs an <code>IOException</code> with the specified detail
|
|
45 |
* message. The error message string <code>s</code> can later be
|
|
46 |
* retrieved by the <code>{@link java.lang.Throwable#getMessage}</code>
|
|
47 |
* method of class <code>java.lang.Throwable</code>.
|
|
48 |
*
|
|
49 |
* @param s the detail message.
|
|
50 |
*/
|
|
51 | 0 |
public DocNameMissingException(String s) {
|
52 | 0 |
super(s);
|
53 |
} |
|
54 |
} |
|