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

