1 /* 2 ** Authored by Timothy Gerard Endres 3 ** <mailto:time@gjt.org> <http://www.trustice.com> 4 ** 5 ** This work has been placed into the public domain. 6 ** You may use this work in any way and for any purpose you wish. 7 ** 8 ** THIS SOFTWARE IS PROVIDED AS-IS WITHOUT WARRANTY OF ANY KIND, 9 ** NOT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY. THE AUTHOR 10 ** OF THIS SOFTWARE, ASSUMES _NO_ RESPONSIBILITY FOR ANY 11 ** CONSEQUENCE RESULTING FROM THE USE, MODIFICATION, OR 12 ** REDISTRIBUTION OF THIS SOFTWARE. 13 ** 14 */ 15 16 package installer; 17 18 import java.io.IOException; 19 20 /** 21 * This exception is used to indicate that there is a problem 22 * with a TAR archive header. 23 */ 24 25 public class 26 InvalidHeaderException extends IOException 27 { 28 29 public 30 InvalidHeaderException() 31 { 32 super(); 33 } 34 35 public 36 InvalidHeaderException( String msg ) 37 { 38 super( msg ); 39 } 40 41 } 42 43