Coverage Report - org.mule.util.file.DeleteException
 
Classes in this File Line Coverage Branch Coverage Complexity
DeleteException
0%
0/4
0%
0/2
1
 
 1  
 /*
 2  
  * $Id: DeleteException.java 8077 2007-08-27 20:15:25Z aperepel $
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
 5  
  *
 6  
  * The software in this package is published under the terms of the CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 
 11  
 package org.mule.util.file;
 12  
 
 13  
 import java.io.File;
 14  
 import java.io.IOException;
 15  
 
 16  
 public class DeleteException extends IOException
 17  
 {
 18  
     /**
 19  
      * Serial version
 20  
      */
 21  
     private static final long serialVersionUID = 6725758458721277194L;
 22  
 
 23  
     public DeleteException()
 24  
     {
 25  0
         super();
 26  0
     }
 27  
 
 28  
     public DeleteException(File f)
 29  
     {
 30  0
         super(f != null ? f.toString() : "null");
 31  0
     }
 32  
 
 33  
 }