Coverage Report - rs.mgifos.mosquito.LoadingException
 
Classes in this File Line Coverage Branch Coverage Complexity
LoadingException
50%
2/4
N/A
1
 
 1  
 /* 
 2  
  * This file is part of Mosquito meta-loader.
 3  
  *
 4  
  * Mosquito meta-loader is free software; you can redistribute it and/or modify
 5  
  * it under the terms of the GNU Lesser General Public License as published by
 6  
  * the Free Software Foundation; either version 3 of the License, or
 7  
  * (at your option) any later version.
 8  
  *
 9  
  * Mosquito meta-loader 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 Lesser General Public License for more details.
 13  
  *
 14  
  * You should have received a copy of the GNU Lesser General Public License
 15  
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 16  
  */
 17  
 
 18  
 package rs.mgifos.mosquito;
 19  
 
 20  
 /*
 21  
  * Created on Jan 9, 2005 at 6:19:12 PM
 22  
  */
 23  
 /**
 24  
  * Loading exception could be thrown while the loading of meta data is in the
 25  
  * progress.
 26  
  * 
 27  
  * @author <a href="mailto:nikola.petkov@gmail.com">Nikola Petkov &lt;nikola.petkov@gmail.com&gt;</a>
 28  
  */
 29  
 public class LoadingException extends Exception {
 30  
     final static long serialVersionUID = 0L;
 31  
 
 32  
     /**
 33  
      * @param message
 34  
      */
 35  
     public LoadingException(String message) {
 36  1
         super(message);
 37  1
     }
 38  
 
 39  
     /**
 40  
      * @param cause
 41  
      */
 42  
     public LoadingException(Throwable cause) {
 43  0
         super(cause);
 44  0
     }
 45  
 }