package code.loader.except;

/**
 * Base class for all Exceptions used by the Module Loader.
 *
 * @author jimeng
 * @since June 17, 2003
 */
public class LoaderException extends Exception {
    /**
     * Constructor for the LoaderException object
     */
    public LoaderException() {
    }


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


