View Javadoc
1 package org.argosfields.converter; 2 3 import java.io.IOException; 4 5 /*** 6 * InvalidFileFormatException.java 7 * 8 * @author Xavier Cho 9 * @version $Revision: 1.1 $ $Date: 2003/10/14 16:46:53 $ 10 */ 11 public class InvalidFileFormatException extends IOException { 12 13 public InvalidFileFormatException() { 14 } 15 16 /*** 17 * @param msg 18 */ 19 public InvalidFileFormatException(final String msg) { 20 super(msg); 21 } 22 }

This page was automatically generated by Maven