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  
      * @param message
 47  
      * @see Exception#Exception(java.lang.String)
 48  
      */
 49  
     public ModifyVetoException(String message)
 50  
     {
 51  0
         super(message);
 52  0
     }
 53  
 
 54  
     /**
 55  
      * (overridden)
 56  
      *
 57  
      * @param message
 58  
      * @param cause
 59  
      * @see Exception#Exception(java.lang.String,java.lang.Throwable)
 60  
      */
 61  
     public ModifyVetoException(String message, Throwable cause)
 62  
     {
 63  0
         super(message, cause);
 64  0
     }
 65  
 
 66  
     /**
 67  
      * (overridden)
 68  
      *
 69  
      * @param cause
 70  
      * @see Exception#Exception(java.lang.Throwable)
 71  
      */
 72  
     public ModifyVetoException(Throwable cause)
 73  
     {
 74  0
         super(cause);
 75  0
     }
 76  
 
 77  
 }