package edu.uprm.admg.nettraveler.schema;

import edu.uprm.admg.nettraveler.system.NetTravelerException;

// JDK imports

/**
 * <code>MethodInitializeException</code> is thrown when an 
 * error is encountered while trying to initialize the method
 * in a MethodDescriptor object, which is used to implement a
 * user-defined projection (Generalized projection).
 * 
 * @author M.Rodriguez-Martinez
 */

public class MethodInitializeException extends NetTravelerException{
    
    /**
	 * 
	 */
	private static final long serialVersionUID = -8486053260413575933L;

	/**
     * Constructs a <code>MethodInitializeException</code> with 
     * a null error message.
     */
    public MethodInitializeException(){
	super();
    }

    /**
     * Constructs a <code>MethodInitializeException</code> with
     * a specfied error message.
     * @param message the error message for this exception
     */
    public MethodInitializeException(String message){
    		super(message);
    }
}
