KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > packtag > strategy > PackException


1 /**
2  * Project pack:tag >> http://packtag.sf.net
3  *
4  * This software is published under the terms of the LGPL
5  * License version 2.1, a copy of which has been included with this
6  * distribution in the 'lgpl.txt' file.
7  *
8  * Last author: $Author: danielgalan $
9  * Last modified: $Date: 2007/04/22 19:04:23 $
10  * Revision: $Revision: 1.1 $
11  *
12  * $Log: PackException.java,v $
13  * Revision 1.1 2007/04/22 19:04:23 danielgalan
14  * pack.tag moved from subversion to good old CVS
15  *
16  */

17 package net.sf.packtag.strategy;
18
19 /**
20  * Exception thrown when the strategy has trouble compressing the resource.
21  *
22  * @author Daniel Galán y Martins
23  * @version $Revision: 1.1 $
24  */

25 public class PackException extends Exception JavaDoc {
26
27     private static final long serialVersionUID = -3665397358186587342L;
28
29
30     public PackException(String JavaDoc message, Throwable JavaDoc cause) {
31         super(message, cause);
32     }
33
34
35     public PackException(String JavaDoc message) {
36         super(message);
37     }
38
39
40     public PackException(Throwable JavaDoc throwable) {
41         super(throwable);
42     }
43
44 }
45
Popular Tags