Coverage Report - org.jaudiotagger.audio.exceptions.CannotWriteException
 
Classes in this File Line Coverage Branch Coverage Complexity
CannotWriteException
0%
0/8
N/A
1
 
 1  
 /*
 2  
  * Entagged Audio Tag library
 3  
  * Copyright (c) 2003-2005 Rapha�l Slinckx <raphael@slinckx.net>
 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  
  * This exception is thrown if the writing process of an audio file failed.
 23  
  *
 24  
  * @author Rapha�l Slinckx
 25  
  */
 26  
 public class CannotWriteException extends Exception
 27  
 {
 28  
     /**
 29  
      * (overridden)
 30  
      *
 31  
      * @see Exception#Exception()
 32  
      */
 33  
     public CannotWriteException()
 34  
     {
 35  0
         super();
 36  0
     }
 37  
 
 38  
     /**
 39  
      * (overridden)
 40  
      *
 41  
      * @see Exception#Exception(java.lang.String)
 42  
      */
 43  
     public CannotWriteException(String message)
 44  
     {
 45  0
         super(message);
 46  0
     }
 47  
 
 48  
     /**
 49  
      * (overridden)
 50  
      *
 51  
      * @see Exception#Exception(java.lang.String,java.lang.Throwable)
 52  
      */
 53  
     public CannotWriteException(String message, Throwable cause)
 54  
     {
 55  0
         super(message, cause);
 56  0
     }
 57  
 
 58  
     /**
 59  
      * (overridden)
 60  
      *
 61  
      * @see Exception#Exception(java.lang.Throwable)
 62  
      */
 63  
     public CannotWriteException(Throwable cause)
 64  
     {
 65  0
         super(cause);
 66  
 
 67  0
     }
 68  
 
 69  
 }