package code.loader.except;

/**
 * File Format Not Supported Exception.
 *
 * @author jimeng
 * @since June 17, 2003
 */
public class FileFormatNotSupportException extends LoaderException {

    /**
     * Constructor for the FileFormatNotSupportException object
     *
     * @param msg Description of the Parameter
     */
    public FileFormatNotSupportException(String msg) {
        super(msg);
    }


    /**
     * Constructor for the FileFormatNotSupportException object
     */
    public FileFormatNotSupportException() {
    }
}

