1 /* 2 * Created on Mar 22, 2005 3 * 4 */ 5 package org.kuali.ole.module.purap.exception; 6 7 import org.kuali.rice.core.api.exception.KualiException; 8 9 public class B2BShoppingException extends KualiException { 10 11 public B2BShoppingException(String message) { 12 super(message); 13 } 14 15 public B2BShoppingException(String message, Throwable t) { 16 super(message, t); 17 } 18 19 public B2BShoppingException(Throwable t) { 20 super(t); 21 } 22 23 }