Coverage Report - org.jaudiotagger.audio.exceptions.InvalidBoxHeaderException
 
Classes in this File Line Coverage Branch Coverage Complexity
InvalidBoxHeaderException
100%
2/2
N/A
1
 
 1  
 package org.jaudiotagger.audio.exceptions;
 2  
 
 3  
 /**
 4  
  * Thrown if when trying to read box id the length doesn't make any sense
 5  
  */
 6  
 public class InvalidBoxHeaderException extends RuntimeException
 7  
 {
 8  
     public InvalidBoxHeaderException(String message)
 9  
     {
 10  1
         super(message);
 11  1
     }
 12  
 }