1 10 11 package org.mule.util.file; 12 13 import java.io.File ; 14 import java.io.IOException ; 15 16 20 public class DeleteException extends IOException  21 { 22 25 private static final long serialVersionUID = 6725758458721277194L; 26 27 public DeleteException() 28 { 29 super(); 30 } 31 32 public DeleteException(File f) 33 { 34 super(f != null ? f.toString() : "null"); 35 } 36 37 } 38 | Popular Tags |