Coverage Report - com.simpligility.maven.plugins.androidndk.ExecutionException
 
Classes in this File Line Coverage Branch Coverage Complexity
ExecutionException
0%
0/8
N/A
1
 
 1  
 /*
 2  
  * Copyright (C) 2007-2008 JVending Masa
 3  
  *
 4  
  * Licensed under the Apache License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  *      http://www.apache.org/licenses/LICENSE-2.0
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package com.simpligility.maven.plugins.androidndk;
 17  
 
 18  
 /**
 19  
  *
 20  
  */
 21  
 public class ExecutionException extends Exception
 22  
 {
 23  
 
 24  
     static final long serialVersionUID = - 7843278034782074384L;
 25  
 
 26  
     /**
 27  
      * Constructs an <code>ExecutionException</code>  with no exception message.
 28  
      */
 29  
     public ExecutionException()
 30  
     {
 31  0
         super();
 32  0
     }
 33  
 
 34  
     /**
 35  
      * Constructs an <code>ExecutionException</code> with the specified exception message.
 36  
      *
 37  
      * @param message the exception message
 38  
      */
 39  
     public ExecutionException( String message )
 40  
     {
 41  0
         super( message );
 42  0
     }
 43  
 
 44  
     /**
 45  
      * Constructs an <code>ExecutionException</code> with the specified exception message and cause of the exception.
 46  
      *
 47  
      * @param message the exception message
 48  
      * @param cause   the cause of the exception
 49  
      */
 50  
     public ExecutionException( String message, Throwable cause )
 51  
     {
 52  0
         super( message, cause );
 53  0
     }
 54  
 
 55  
     /**
 56  
      * Constructs an <code>ExecutionException</code> with the cause of the exception.
 57  
      *
 58  
      * @param cause the cause of the exception
 59  
      */
 60  
     public ExecutionException( Throwable cause )
 61  
     {
 62  0
         super( cause );
 63  0
     }
 64  
 }
 65