/*
 * ProduitException.java
 *
 * Created on 13 mars 2003, 10:59
 */

package com.developpez.composite;

import java.lang.RuntimeException;

/**
 *
 * @author  smeric
 */
public class ProduitException extends RuntimeException {
    public ProduitException() {
        super();
    }
    public ProduitException(String msg) {
        super(msg);
    }
    public ProduitException(Exception e) {
        super(e);
    }
}
