/*
 * Copyright (c) 2004 N2 Broadband, Inc.  All Rights Reserved.
 *
 * This module contains unpublished, confidential, proprietary
 * material.  The use and dissemination of this material are
 * governed by a license.  The above copyright notice does not
 * evidence any actual or intended publication of this material.
 * 
 * Created: Feb 10, 2005
 */

package com.n2bb.util;

/**
 * Thrown when CORBA client times out.
 *
 * @author kmatsuoka
 * @version $Id: ClientTimeoutException.java,v 1.1 2006/08/30 18:34:04 kmehta Exp $
 */
public class ClientTimeoutException extends N2bbException {

    public ClientTimeoutException() {
        super("error.corba.timeout");
    }
}
