Coverage Report - org.jaudiotagger.logging.FileSystemMessage
 
Classes in this File Line Coverage Branch Coverage Complexity
FileSystemMessage
0%
0/6
N/A
0
 
 1  
 package org.jaudiotagger.logging;
 2  
 
 3  
 /**
 4  
  * For parsing the exact cause of a file exception, because variations not handled well by Java
 5  
  */
 6  0
 public enum FileSystemMessage
 7  
 {
 8  0
     ACCESS_IS_DENIED("Access is denied"),
 9  
 
 10  
     ;
 11  
     String msg;
 12  
 
 13  
     FileSystemMessage(String msg)
 14  0
     {
 15  0
         this.msg = msg;
 16  0
     }
 17  
 
 18  
     public String getMsg()
 19  
     {
 20  0
         return msg;
 21  
     }
 22  
 }