
/*
 * BadVertexSwapException.class
 * Part of package project
 *
 * Author: Philip Bradley
 *
 */

package project;

public class BadVertexSwapException extends Exception {


	public BadVertexSwapException() {
		super("Attempt to swap two vertices in the same partition:");
	} 

	public BadVertexSwapException(String s) {
		super("Attempt to swap two vertices in the same partition:" + " : " + s);
	}
}

