I would throw NullPointerException or IllegalArgumentException because that's what's really going on here and as they are run time exceptions you don't have to declare them.
 
regs
scot.
public class PackageSkuValueObject extends SkuValueObject implements Serializable
{
    private String pkgSkuId;
 
    public void PackageSkuValueObject(String skuId) throws InventoryAppException
    {
        if (skuId == null)
            throw new InventoryAppException(1009010);
 
        pkgSkuId = skuId;   
    }
}
____________________________________________________
To change your JDJList options, please visit:
http://www.sys-con.com/java/list.cfm

Be respectful! Clean up your posts before replying
____________________________________________________

Reply via email to