View Javadoc

1   // UTFDataFormatError.java, created Mon Feb  5 23:23:22 2001 by joewhaley
2   // Copyright (C) 2001-3 John Whaley <jwhaley@alum.mit.edu>
3   // Licensed under the terms of the GNU LGPL; see COPYING for details.
4   package joeq.UTF;
5   
6   /***
7    * Indicates a UTF format error.
8    * 
9    * @author  John Whaley <jwhaley@alum.mit.edu>
10   * @version $Id: UTFDataFormatError.java 2250 2005-04-29 07:41:11Z joewhaley $
11   */
12  public class UTFDataFormatError extends RuntimeException {
13  
14      /***
15       * Version ID for serialization.
16       */
17      private static final long serialVersionUID = 3257845472142964791L;
18  
19      /***
20       * Creates new <code>UTFDataFormatError</code> without detail message.
21       */
22      public UTFDataFormatError() {
23      }
24  
25      /***
26       * Constructs an <code>UTFDataFormatError</code> with the specified detail message.
27       * @param msg the detail message.
28       */
29      public UTFDataFormatError(String msg) {
30          super(msg);
31      }
32  }