1 25 package org.ofbiz.service; 26 27 35 public class GenericServiceException extends org.ofbiz.base.util.GeneralException { 36 37 public GenericServiceException() { 38 super(); 39 } 40 41 public GenericServiceException(String str) { 42 super(str); 43 } 44 45 public GenericServiceException(String str, Throwable nested) { 46 super(str, nested); 47 } 48 49 public GenericServiceException(Throwable nested) { 50 super(nested); 51 } 52 } 53 | Popular Tags |