1 24 25 package org.ofbiz.accounting; 26 27 import org.ofbiz.service.GenericServiceException; 28 29 36 public class AccountingException extends GenericServiceException { 37 38 public AccountingException() { 39 super(); 40 } 41 42 public AccountingException(Throwable throwable) { 43 super(throwable); 44 } 45 46 public AccountingException(String string) { 47 super(string); 48 } 49 50 public AccountingException(String string, Throwable throwable) { 51 super(string, throwable); 52 } 53 } 54 | Popular Tags |