1 25 26 package org.objectweb.easybeans.util.files; 27 28 33 public class FileUtilsException extends Exception { 34 35 38 private static final long serialVersionUID = 1948481143010098339L; 39 40 43 public FileUtilsException() { 44 super(); 45 } 46 47 51 public FileUtilsException(final String message) { 52 super(message); 53 } 54 55 61 public FileUtilsException(final String message, final Throwable t) { 62 super(message, t); 63 } 64 } 65 | Popular Tags |