Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: Exceptions/InvalidTcpdumpFileException.java


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