Coverage Report - net.sourceforge.combean.util.except.GraphModificationException
 
Classes in this File Line Coverage Branch Coverage Complexity
GraphModificationException
0%
0/8
N/A
1
 
 1  
 /*
 2  
     This file is part of Combean.
 3  
 
 4  
     Combean is free software; you can redistribute it and/or modify
 5  
     it under the terms of the GNU General Public License as published by
 6  
     the Free Software Foundation; either version 2 of the License, or
 7  
     (at your option) any later version.
 8  
 
 9  
     Combean is distributed in the hope that it will be useful,
 10  
     but WITHOUT ANY WARRANTY; without even the implied warranty of
 11  
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 12  
     GNU General Public License for more details.
 13  
 
 14  
     You should have received a copy of the GNU General Public License
 15  
     along with Combean; if not, write to the Free Software
 16  
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 17  
 */
 18  
 /*
 19  
  * Created on 22.03.2005
 20  
  *
 21  
  */
 22  
 package net.sourceforge.combean.util.except;
 23  
 
 24  
 /**
 25  
  * @author schickin
 26  
  *
 27  
  */
 28  
 public class GraphModificationException extends RuntimeException {
 29  
 
 30  
     // TODO more sophisticated graph modification exception hierarchy
 31  
     
 32  
     /**
 33  
      * 
 34  
      */
 35  
     public GraphModificationException() {
 36  0
         super();
 37  0
     }
 38  
 
 39  
     /**
 40  
      * @param message
 41  
      */
 42  
     public GraphModificationException(String message) {
 43  0
         super(message);
 44  0
     }
 45  
 
 46  
     /**
 47  
      * @param cause
 48  
      */
 49  
     public GraphModificationException(Throwable cause) {
 50  0
         super(cause);
 51  0
     }
 52  
 
 53  
     /**
 54  
      * @param message
 55  
      * @param cause
 56  
      */
 57  
     public GraphModificationException(String message, Throwable cause) {
 58  0
         super(message, cause);
 59  0
     }
 60  
 
 61  
 }