Coverage Report - org.jaudiotagger.audio.exceptions.NullBoxIdException
 
Classes in this File Line Coverage Branch Coverage Complexity
NullBoxIdException
100%
2/2
N/A
1
 
 1  
 package org.jaudiotagger.audio.exceptions;
 2  
 
 3  
 /**
 4  
  * Thrown if when trying to read box id just finds nulls
 5  
  * Normally an error, but if occurs at end of file we allow it
 6  
  */
 7  
 public class NullBoxIdException extends RuntimeException
 8  
 {
 9  
     public NullBoxIdException(String message)
 10  
     {
 11  79
         super(message);
 12  79
     }
 13  
 }