// GraphTea Project: http://github.com/graphtheorysoftware/GraphTea
// Copyright (C) 2012 Graph Theory Software Foundation: http://GraphTheorySoftware.com
// Copyright (C) 2008 Mathematical Science Department of Sharif University of Technology
// Distributed under the terms of the GNU Lesser General Public License (LGPL): http://www.gnu.org/licenses/
/*
* CopyUnsupportedException.java
*
* Created on November 14, 2004, 1:23 AM
*/
package graphtea.library.exceptions;
/**
* @author Omid Aladini
*/
public class CopyUnsupportedException extends java.lang.Exception {
private static final long serialVersionUID = 3760847848350365491L;
/**
* Constructs an instance of <code>InvalidVertexException</code>
*/
public CopyUnsupportedException() {
super("Copy operation is not overloaded for user defined class.");
}
}