package code.loader.except;

/**
 * Module File Not Found Exception.
 *
 * @author jimeng
 * @since June 17, 2003
 */
public class ModFileNotFoundException extends LoaderException {

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


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

}

