Coverage Report - org.jaudiotagger.tag.KeyNotFoundException
 
Classes in this File Line Coverage Branch Coverage Complexity
KeyNotFoundException
0%
0/8
N/A
1
 
 1  
 package org.jaudiotagger.tag;
 2  
 
 3  
 /**
 4  
  * Thrown if the key cannot be found
 5  
  * <p/>
 6  
  * <p>Shoudl not happen with well written code, hence RuntimeException.
 7  
  */
 8  
 public class KeyNotFoundException extends RuntimeException
 9  
 {
 10  
     /**
 11  
      * Creates a new KeyNotFoundException datatype.
 12  
      */
 13  
     public KeyNotFoundException()
 14  0
     {
 15  0
     }
 16  
 
 17  
     /**
 18  
      * Creates a new KeyNotFoundException datatype.
 19  
      *
 20  
      * @param ex the cause.
 21  
      */
 22  
     public KeyNotFoundException(Throwable ex)
 23  
     {
 24  0
         super(ex);
 25  0
     }
 26  
 
 27  
     /**
 28  
      * Creates a new KeyNotFoundException datatype.
 29  
      *
 30  
      * @param msg the detail message.
 31  
      */
 32  
     public KeyNotFoundException(String msg)
 33  
     {
 34  0
         super(msg);
 35  0
     }
 36  
 
 37  
     /**
 38  
      * Creates a new KeyNotFoundException datatype.
 39  
      *
 40  
      * @param msg the detail message.
 41  
      * @param ex  the cause.
 42  
      */
 43  
     public KeyNotFoundException(String msg, Throwable ex)
 44  
     {
 45  0
         super(msg, ex);
 46  0
     }
 47  
 }