All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lastbamboo.common.ice.IceException Maven / Gradle / Ivy

package org.lastbamboo.common.ice;


/**
 * Exception for an inability to connect to ICE candidates.
 */
public class IceException extends Exception
    {

    /**
     * Serialization ID for this class.
     */
    private static final long serialVersionUID = -608132433078810213L;

    /**
     * Creates a new ICE exception.
     * 
     * @param msg The message explaining the exception.
     */
    public IceException(final String msg)
        {
        super(msg);
        }

    /**
     * Creates a new ICE exception.
     * 
     * @param message The exception message.
     * @param cause The exception that caused this exception.
     */
    public IceException(final String message, final Throwable cause)
        {
        super(message, cause);
        }

    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy