Coverage Report - org.jaudiotagger.audio.exceptions.ModifyVetoException
 
Classes in this File Line Coverage Branch Coverage Complexity
ModifyVetoException
0%
0/8
N/A
1
 
 1  
 /*
 2  
  * Entagged Audio Tag library
 3  
  * Copyright (c) 2003-2005 Christian Laireiter <liree@web.de>
 4  
  * 
 5  
  * This library is free software; you can redistribute it and/or
 6  
  * modify it under the terms of the GNU Lesser General Public
 7  
  * License as published by the Free Software Foundation; either
 8  
  * version 2.1 of the License, or (at your option) any later version.
 9  
  *  
 10  
  * This library is distributed in the hope that it will be useful,
 11  
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 12  
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 13  
  * Lesser General Public License for more details.
 14  
  * 
 15  
  * You should have received a copy of the GNU Lesser General Public
 16  
  * License along with this library; if not, write to the Free Software
 17  
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 18  
  */
 19  
 package org.jaudiotagger.audio.exceptions;
 20  
 
 21  
 
 22  
 /**
 23  
  * This exception is thrown if a
 24  
  * {@link org.jaudiotagger.audio.generic.AudioFileModificationListener} wants to
 25  
  * prevent the &quote;entagged audio library&quote; from actually finishing its
 26  
  * operation.<br>
 27  
  * This exception can be used in all methods but
 28  
  * {@link org.jaudiotagger.audio.generic.AudioFileModificationListener#fileOperationFinished(java.io.File)}.
 29  
  *
 30  
  * @author Christian Laireiter
 31  
  */
 32  
 public class ModifyVetoException extends Exception
 33  
 {
 34  
 
 35  
     /**
 36  
      * (overridden)
 37  
      */
 38  
     public ModifyVetoException()
 39  
     {
 40  0
         super();
 41  0
     }
 42  
 
 43  
     /**
 44  
      * (overridden)
 45  
      *
 46  
      * @see Exception#Exception(java.lang.String)
 47  
      */
 48  
     public ModifyVetoException(String message)
 49  
     {
 50  0
         super(message);
 51  0
     }
 52  
 
 53  
     /**
 54  
      * (overridden)
 55  
      *
 56  
      * @see Exception#Exception(java.lang.String,java.lang.Throwable)
 57  
      */
 58  
     public ModifyVetoException(String message, Throwable cause)
 59  
     {
 60  0
         super(message, cause);
 61  0
     }
 62  
 
 63  
     /**
 64  
      * (overridden)
 65  
      *
 66  
      * @see Exception#Exception(java.lang.Throwable)
 67  
      */
 68  
     public ModifyVetoException(Throwable cause)
 69  
     {
 70  0
         super(cause);
 71  0
     }
 72  
 
 73  
 }