/* * GraphException.java * * Created on October 25, 2005, 2:51 PM * * To change this template, choose Tools | Options and locate the template under * the Source Creation and Management node. Right-click the template and choose * Open. You can then make changes to the template in the Source Editor. */ package org.tgdb.util.graph; /** * * @author lami */ public class GraphException extends Exception { /** Creates a new instance of GraphException */ public GraphException(String message) { super(message); } }