Coverage Report - org.eclipse.swtbot.eclipse.finder.exceptions.QuickFixNotFoundException
 
Classes in this File Line Coverage Branch Coverage Complexity
QuickFixNotFoundException
100%
6/6
N/A
1
 
 1  
 /*******************************************************************************
 2  
  * Copyright (c) 2008 Ketan Padegaonkar and others.
 3  
  * All rights reserved. This program and the accompanying materials
 4  
  * are made available under the terms of the Eclipse Public License v1.0
 5  
  * which accompanies this distribution, and is available at
 6  
  * http://www.eclipse.org/legal/epl-v10.html
 7  
  * 
 8  
  * Contributors:
 9  
  *     Ketan Padegaonkar - initial API and implementation
 10  
  *******************************************************************************/
 11  
 package org.eclipse.swtbot.eclipse.finder.exceptions;
 12  
 
 13  
 /**
 14  
  * @author Ketan Padegaonkar <KetanPadegaonkar [at] gmail [dot] com>
 15  
  * @version $Id$
 16  
  */
 17  
 public class QuickFixNotFoundException extends RuntimeException {
 18  
         /**
 19  
          * The serialization version identifier.
 20  
          */
 21  
         private static final long        serialVersionUID        = -6129340921268076590L;
 22  
 
 23  
         /**
 24  
          * Cosntructs an instance with the given message.
 25  
          * 
 26  
          * @param message the message.
 27  
          */
 28  
         public QuickFixNotFoundException(String message) {
 29  1
                 super(message);
 30  1
         }
 31  
 
 32  
         /**
 33  
          * Cosntructs an instance with the given message and cause.
 34  
          * 
 35  
          * @param message the message.
 36  
          * @param cause the root cause.
 37  
          */
 38  
         public QuickFixNotFoundException(String message, Throwable cause) {
 39  1
                 super(message, cause);
 40  1
         }
 41  
 
 42  
         /**
 43  
          * Cosntructs an instance with the given cause.
 44  
          * 
 45  
          * @param cause the root cause.
 46  
          */
 47  
         public QuickFixNotFoundException(Throwable cause) {
 48  1
                 super(cause);
 49  1
         }
 50  
 
 51  
 }