1 25 26 27 package org.ofbiz.order.thirdparty.taxware; 28 29 import org.ofbiz.base.util.GeneralException; 30 31 32 39 public class TaxwareException extends GeneralException { 40 41 public TaxwareException() { 42 super(); 43 } 44 45 public TaxwareException(String str) { 46 super(str); 47 } 48 49 public TaxwareException(String str, Throwable nested) { 50 super(str, nested); 51 } 52 } 53 54 | Popular Tags |