001/* 002 * Created on Mar 22, 2005 003 * 004 */ 005package org.kuali.ole.module.purap.exception; 006 007import org.kuali.rice.core.api.exception.KualiException; 008 009public class B2BShoppingException extends KualiException { 010 011 public B2BShoppingException(String message) { 012 super(message); 013 } 014 015 public B2BShoppingException(String message, Throwable t) { 016 super(message, t); 017 } 018 019 public B2BShoppingException(Throwable t) { 020 super(t); 021 } 022 023}