Coverage Report - no.sesat.search.InfrastructureException
 
Classes in this File Line Coverage Branch Coverage Complexity
InfrastructureException
0%
0/4
N/A
1
 
 1  
 /*
 2  
  * Copyright (2005-2007) Schibsted Søk AS
 3  
  * This file is part of SESAT.
 4  
  *
 5  
  *   SESAT is free software: you can redistribute it and/or modify
 6  
  *   it under the terms of the GNU Affero General Public License as published by
 7  
  *   the Free Software Foundation, either version 3 of the License, or
 8  
  *   (at your option) any later version.
 9  
  *
 10  
  *   SESAT is distributed in the hope that it will be useful,
 11  
  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 12  
  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 13  
  *   GNU Affero General Public License for more details.
 14  
  *
 15  
  *   You should have received a copy of the GNU Affero General Public License
 16  
  *   along with SESAT.  If not, see <http://www.gnu.org/licenses/>.
 17  
  */
 18  
 package no.sesat.search;
 19  
 
 20  
 /**
 21  
  *
 22  
  * @version <tt>$Revision: 6596 $</tt>
 23  
  */
 24  
 public class InfrastructureException extends RuntimeException {
 25  
     /** The serialVersionUID */
 26  
     private static final long serialVersionUID = -4397027929558851526L;
 27  
 
 28  
     /**
 29  
      * Create a new InfrastructureException.
 30  
      *
 31  
      * @param e
 32  
      */
 33  
     public InfrastructureException(Exception e) {
 34  0
         super(e);
 35  0
     }
 36  
 
 37  
     /**
 38  
      * Create a new InfrastructureException.
 39  
      *
 40  
      * @param s
 41  
      * @param e
 42  
      */
 43  
     public InfrastructureException(String s, Exception e) {
 44  0
         super(s, e);
 45  0
     }
 46  
 }