| Home >> All |
Source code: Exceptions/InvalidHeaderException.java
1 /* 2 * InvalidHeaderException.java 3 * 4 * Created on 07 January 2003, 16:51 5 */ 6 7 package Exceptions; 8 9 /** 10 * 11 * @author yc 12 */ 13 public class InvalidHeaderException extends InvalidTcpdumpFileException { 14 15 /** 16 * Creates a new instance of <code>InvalidHeaderException</code> without detail message. 17 */ 18 public InvalidHeaderException() { 19 } 20 21 22 /** 23 * Constructs an instance of <code>InvalidHeaderException</code> with the specified detail message. 24 * @param msg the detail message. 25 */ 26 public InvalidHeaderException(String msg) { 27 super(msg); 28 } 29 }