/*
 * IncomparableObjectsException.java
 *
 * Created on May 24, 2006, 3:33 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package usda.weru.util.diff;

/**
 *
 * @author Joseph Levin
 */
public class IncomparableObjectsException extends java.lang.Exception {
    private static final long serialVersionUID = 1L;
    
    /**
     * Creates a new instance of <code>IncomparableObjectsException</code> without detail message.
     */
    public IncomparableObjectsException() {
    }
    
    
    /**
     * Constructs an instance of <code>IncomparableObjectsException</code> with the specified detail message.
     * 
     * @param msg the detail message.
     */
    public IncomparableObjectsException(String msg) {
        super(msg);
    }
}
