Coverage Report - org.jaudiotagger.tag.InvalidDataTypeException
 
Classes in this File Line Coverage Branch Coverage Complexity
InvalidDataTypeException
25%
2/8
N/A
1
 
 1  
 /*
 2  
  *  This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser
 3  
  *  General Public  License as published by the Free Software Foundation; either version 2.1 of the License,
 4  
  *  or (at your option) any later version.
 5  
  *
 6  
  *  This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
 7  
  *  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 8  
  *  See the GNU Lesser General Public License for more details.
 9  
  *
 10  
  *  You should have received a copy of the GNU Lesser General Public License along with this library; if not,
 11  
  *  you can get a copy from http://www.opensource.org/licenses/lgpl-license.php or write to the Free Software
 12  
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 13  
  */
 14  
 package org.jaudiotagger.tag;
 15  
 
 16  
 /**
 17  
  * Indicates there was a problem parsing this datatype due to a problem with the data
 18  
  * such as the array being empty when trying to read from a file.
 19  
  *
 20  
  * @version $Revision: 1.6 $
 21  
  */
 22  
 public class InvalidDataTypeException extends InvalidTagException
 23  
 {
 24  
     /**
 25  
      * Creates a new InvalidDataTypeException datatype.
 26  
      */
 27  
     public InvalidDataTypeException()
 28  0
     {
 29  0
     }
 30  
 
 31  
     /**
 32  
      * Creates a new InvalidDataTypeException datatype.
 33  
      *
 34  
      * @param ex the cause.
 35  
      */
 36  
     public InvalidDataTypeException(Throwable ex)
 37  
     {
 38  0
         super(ex);
 39  0
     }
 40  
 
 41  
     /**
 42  
      * Creates a new InvalidDataTypeException datatype.
 43  
      *
 44  
      * @param msg the detail message.
 45  
      */
 46  
     public InvalidDataTypeException(String msg)
 47  
     {
 48  3
         super(msg);
 49  3
     }
 50  
 
 51  
     /**
 52  
      * Creates a new InvalidDataTypeException datatype.
 53  
      *
 54  
      * @param msg the detail message.
 55  
      * @param ex  the cause.
 56  
      */
 57  
     public InvalidDataTypeException(String msg, Throwable ex)
 58  
     {
 59  0
         super(msg, ex);
 60  0
     }
 61  
 }