Coverage Report - org.jaudiotagger.audio.exceptions.UnableToRenameFileException
 
Classes in this File Line Coverage Branch Coverage Complexity
UnableToRenameFileException
0%
0/2
N/A
1
 
 1  
 package org.jaudiotagger.audio.exceptions;
 2  
 
 3  
 import java.io.IOException;
 4  
 
 5  
 /**
 6  
  * Should be thrown when unable to rename a file when it is expected it should rename. For example could occur on Vista
 7  
  * because you do not have Special Permission 'Delete' set to Denied.
 8  
  */
 9  
 public class UnableToRenameFileException extends IOException
 10  
 {
 11  
     public UnableToRenameFileException(String message)
 12  
     {
 13  0
         super(message);
 14  0
     }
 15  
 }