Coverage Report - org.jaudiotagger.tag.TagException
 
Classes in this File Line Coverage Branch Coverage Complexity
TagException
25%
2/8
N/A
1
 
 1  
 /*
 2  
  *  @author : Paul Taylor
 3  
  *  @author : Eric Farng
 4  
  *
 5  
  *  Version @version:$Id: TagException.java 520 2008-01-01 15:16:38Z paultaylor $
 6  
  *
 7  
  *  MusicTag Copyright (C)2003,2004
 8  
  *
 9  
  *  This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser
 10  
  *  General Public  License as published by the Free Software Foundation; either version 2.1 of the License,
 11  
  *  or (at your option) any later version.
 12  
  *
 13  
  *  This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
 14  
  *  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 15  
  *  See the GNU Lesser General Public License for more details.
 16  
  *
 17  
  *  You should have received a copy of the GNU Lesser General Public License along with this library; if not,
 18  
  *  you can get a copy from http://www.opensource.org/licenses/lgpl-license.php or write to the Free Software
 19  
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 20  
  *
 21  
  */
 22  
 package org.jaudiotagger.tag;
 23  
 
 24  
 /**
 25  
  * This is the exception that is always generated by any class in these
 26  
  * packages.
 27  
  *
 28  
  * @author Eric Farng
 29  
  * @version $Revision: 520 $
 30  
  */
 31  
 public class TagException extends Exception
 32  
 {
 33  
     /**
 34  
      * Creates a new TagException datatype.
 35  
      */
 36  
     public TagException()
 37  0
     {
 38  0
     }
 39  
 
 40  
     /**
 41  
      * Creates a new TagException datatype.
 42  
      *
 43  
      * @param ex the cause.
 44  
      */
 45  
     public TagException(Throwable ex)
 46  
     {
 47  0
         super(ex);
 48  0
     }
 49  
 
 50  
     /**
 51  
      * Creates a new TagException datatype.
 52  
      *
 53  
      * @param msg the detail message.
 54  
      */
 55  
     public TagException(String msg)
 56  
     {
 57  6224
         super(msg);
 58  6224
     }
 59  
 
 60  
     /**
 61  
      * Creates a new TagException datatype.
 62  
      *
 63  
      * @param msg the detail message.
 64  
      * @param ex  the cause.
 65  
      */
 66  
     public TagException(String msg, Throwable ex)
 67  
     {
 68  0
         super(msg, ex);
 69  0
     }
 70  
 }