Coverage Report - org.jaudiotagger.tag.FieldDataInvalidException
 
Classes in this File Line Coverage Branch Coverage Complexity
FieldDataInvalidException
0%
0/8
N/A
1
 
 1  
 package org.jaudiotagger.tag;
 2  
 
 3  
 /**
 4  
  * Thrown if the try and create a field with invalid data
 5  
  * <p/>
 6  
  * <p>For example if try and create an Mp4Field with type Byte using data that cannot be parsed as a number
 7  
  * then this exception will be thrown
 8  
  */
 9  
 public class FieldDataInvalidException extends TagException
 10  
 {
 11  
     /**
 12  
      * Creates a new KeyNotFoundException datatype.
 13  
      */
 14  
     public FieldDataInvalidException()
 15  0
     {
 16  0
     }
 17  
 
 18  
     /**
 19  
      * Creates a new KeyNotFoundException datatype.
 20  
      *
 21  
      * @param ex the cause.
 22  
      */
 23  
     public FieldDataInvalidException(Throwable ex)
 24  
     {
 25  0
         super(ex);
 26  0
     }
 27  
 
 28  
     /**
 29  
      * Creates a new KeyNotFoundException datatype.
 30  
      *
 31  
      * @param msg the detail message.
 32  
      */
 33  
     public FieldDataInvalidException(String msg)
 34  
     {
 35  0
         super(msg);
 36  0
     }
 37  
 
 38  
     /**
 39  
      * Creates a new KeyNotFoundException datatype.
 40  
      *
 41  
      * @param msg the detail message.
 42  
      * @param ex  the cause.
 43  
      */
 44  
     public FieldDataInvalidException(String msg, Throwable ex)
 45  
     {
 46  0
         super(msg, ex);
 47  0
     }
 48  
 }