KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ice > jni > registry > NoSuchValueException


1 /*
2 ** Java native interface to the Windows Registry API.
3 ** Copyright (c) 1997 by Timothy Gerard Endres
4 **
5 ** This program is free software.
6 **
7 ** You may redistribute it and/or modify it under the terms of the GNU
8 ** General Public License as published by the Free Software Foundation.
9 ** Version 2 of the license should be included with this distribution in
10 ** the file LICENSE, as well as License.html. If the license is not
11 ** included with this distribution, you may find a copy at the FSF web
12 ** site at 'www.gnu.org' or 'www.fsf.org', or you may write to the
13 ** Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139 USA.
14 **
15 ** THIS SOFTWARE IS PROVIDED AS-IS WITHOUT WARRANTY OF ANY KIND,
16 ** NOT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY. THE AUTHOR
17 ** OF THIS SOFTWARE, ASSUMES _NO_ RESPONSIBILITY FOR ANY
18 ** CONSEQUENCE RESULTING FROM THE USE, MODIFICATION, OR
19 ** REDISTRIBUTION OF THIS SOFTWARE.
20 **
21 */

22
23 package com.ice.jni.registry;
24
25 /**
26  * This exception is used to indicate that no such key exists in the registry.
27  *
28  * @version $Revision: 1.1 $
29  * @author Timothy Gerard Endres,
30  * <a HREF="mailto:time@ice.com">time@ice.com</a>.
31  */

32
33 public class
34 NoSuchValueException extends RegistryException
35     {
36     static public final String JavaDoc RCS_ID = "$Id: NoSuchValueException.java,v 1.1 2002/03/14 09:57:21 deniger Exp $";
37     static public final String JavaDoc RCS_REV = "$Revision: 1.1 $";
38     static public final String JavaDoc RCS_NAME = "$Name: $";
39
40     public
41     NoSuchValueException()
42         {
43         super();
44         }
45
46     public
47     NoSuchValueException( String JavaDoc msg )
48         {
49         super( msg, Registry.ERROR_FILE_NOT_FOUND );
50         }
51
52     public
53     NoSuchValueException( String JavaDoc msg, int regErr )
54         {
55         super( msg, regErr );
56         }
57
58     }
59
60
61
Popular Tags