1 /***
2 * ConversionException.java
3 *
4 * $Author: mballesteros $
5 * $Date: 2003/11/28 19:18:03 $
6 * $Revision: 1.1 $
7 */
8 package net.sf.jec;
9
10 /*** Thrown when an error appears during an object conversion
11 *
12 * @author mballesteros
13 */
14 public class ConversionException extends java.lang.Exception {
15
16 /***
17 * Constructs an instance of <code>ConversionException</code> with the specified detail message.
18 * @param msg the detail message.
19 */
20 public ConversionException(String msg) {
21 super(msg);
22 }
23 }
This page was automatically generated by Maven