1 25 package org.ofbiz.datafile; 26 27 import org.ofbiz.base.util.GeneralException; 28 29 36 public class DataFileException extends GeneralException { 37 38 public DataFileException() { 39 super(); 40 } 41 42 public DataFileException(String str) { 43 super(str); 44 } 45 46 public DataFileException(String str, Throwable nested) { 47 super(str, nested); 48 } 49 } 50 | Popular Tags |