/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.m16e.mpbiz.b2b.cbl;
import com.m16e.mpbiz.common.bizclasses.MpBizException;
////////////////////////////////////////////////////////////
/**
*
* @author carlos
*/
public class CblException
extends MpBizException
{
////////////////////////////////////////////////////////////
public CblException( String message )
{
super( message );
}
////////////////////////////////////////////////////////////
public CblException( Exception e )
{
super( e );
}
}
|