Statistics
| Revision:

root / import / ext3D / trunk / install-extension3d / IzPack / src / lib / com / izforge / izpack / installer / ResourceNotFoundException.java @ 15280

History | View | Annotate | Download (1.54 KB)

1 15280 rgaitan
/*
2
 *  $Id: ResourceNotFoundException.java,v 1.1 2006/06/14 07:29:07 cesar Exp $
3
 *  IzPack
4
 *  Copyright (C) 2001,2002 Marcus Stursberg
5
 *
6
 *  File :               ResourceManager.java
7
 *  Description :        Class to get resources from the installer
8
 *  Author's email :     marcus@emsty.de
9
 *  Author's Website :   http://www.emasty.de
10
 *
11
 *  This program is free software; you can redistribute it and/or
12
 *  modify it under the terms of the GNU General Public License
13
 *  as published by the Free Software Foundation; either version 2
14
 *  of the License, or any later version.
15
 *
16
 *  This program is distributed in the hope that it will be useful,
17
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 *  GNU General Public License for more details.
20
 *
21
 *  You should have received a copy of the GNU General Public License
22
 *  along with this program; if not, write to the Free Software
23
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24
 */
25
package com.izforge.izpack.installer;
26
27
/**
28
 *  Describes that a resource could not be found
29
 *
30
 * @author     Marcus Stursberg
31
 */
32
33
public class ResourceNotFoundException extends Exception
34
{
35
36
37
 /**  creates a new ResourceNotFoundException */
38
 public ResourceNotFoundException()
39
 {
40
   super();
41
 }
42
43
44
 /**
45
  *  creates a new ResourceNotFoundException
46
  *
47
  * @param  s  description of the exception
48
  */
49
 public ResourceNotFoundException(String s)
50
 {
51
   super(s);
52
 }
53
}