Coverage Report - org.jaudiotagger.audio.exceptions.CannotWriteException
 
Classes in this File Line Coverage Branch Coverage Complexity
CannotWriteException
25%
2/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  
      * @param message
 42  
      * @see Exception#Exception(java.lang.String)
 43  
      */
 44  
     public CannotWriteException(String message)
 45  
     {
 46  2
         super(message);
 47  2
     }
 48  
 
 49  
     /**
 50  
      * (overridden)
 51  
      *
 52  
      * @param message
 53  
      * @param cause
 54  
      * @see Exception#Exception(java.lang.String,java.lang.Throwable)
 55  
      */
 56  
     public CannotWriteException(String message, Throwable cause)
 57  
     {
 58  0
         super(message, cause);
 59  0
     }
 60  
 
 61  
     /**
 62  
      * (overridden)
 63  
      *
 64  
      * @param cause
 65  
      * @see Exception#Exception(java.lang.Throwable)
 66  
      */
 67  
     public CannotWriteException(Throwable cause)
 68  
     {
 69  0
         super(cause);
 70  
 
 71  0
     }
 72  
 
 73  
 }