Coverage Report - org.jaudiotagger.audio.exceptions.CannotReadVideoException
 
Classes in this File Line Coverage Branch Coverage Complexity
CannotReadVideoException
25%
2/8
N/A
1
 
 1  
 package org.jaudiotagger.audio.exceptions;
 2  
 
 3  
 /**
 4  
  * This exception should be thrown idf it appears the file is a video file, jaudiotagger only supports audio
 5  
  * files.
 6  
  */
 7  
 public class CannotReadVideoException extends CannotReadException
 8  
 {
 9  
     /**
 10  
      * Creates an instance.
 11  
      */
 12  
     public CannotReadVideoException()
 13  
     {
 14  0
         super();
 15  0
     }
 16  
 
 17  
     public CannotReadVideoException(Throwable ex)
 18  
     {
 19  0
         super(ex);
 20  0
     }
 21  
 
 22  
     /**
 23  
      * Creates an instance.
 24  
      *
 25  
      * @param message The message.
 26  
      */
 27  
     public CannotReadVideoException(String message)
 28  
     {
 29  1
         super(message);
 30  1
     }
 31  
 
 32  
     /**
 33  
      * Creates an instance.
 34  
      *
 35  
      * @param message The error message.
 36  
      * @param cause   The throwable causing this exception.
 37  
      */
 38  
     public CannotReadVideoException(String message, Throwable cause)
 39  
     {
 40  0
         super(message, cause);
 41  0
     }
 42  
 }