Statistics
| Revision:

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

History | View | Annotate | Download (1.67 KB)

1
/*
2
 *  $Id: InstallerException.java,v 1.1 2006/06/14 07:29:07 cesar Exp $
3
 *  IzPack
4
 *  Copyright (C) 2004 Klaus Bartz
5
 *
6
 *  File :               InstallerException.java
7
 *  Description :        Exception for custom actions at install time.
8
 *  Author's email :     klaus.bartz@coi.de
9
 *  Author's Website :   http://www.coi.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
 * Indicates a Failure in a custom action.
29
 *
30
 * @author  Klaus Bartz
31
 *
32
 */
33
public class InstallerException extends Exception
34
{
35

    
36
  /**
37
   * 
38
   */
39
  public InstallerException()
40
  {
41
    super();
42
  }
43

    
44
  /**
45
   * @param message
46
   */
47
  public InstallerException(String message)
48
  {
49
    super(message);
50
  }
51

    
52
  /**
53
   * @param cause
54
   */
55
  public InstallerException(Throwable cause)
56
  {
57
    super(cause);
58
  }
59

    
60
  /**
61
   * @param message
62
   * @param cause
63
   */
64
  public InstallerException(String message, Throwable cause)
65
  {
66
    super(message, cause);
67
  }
68

    
69
}