Class MulticastNotSupportedException
public class MulticastNotSupportedException extends java.lang.RuntimeException
{
  // Constructors
  public MulticastNotSupportedException();
  public MulticastNotSupportedException(String strInfo);
}
This class is thrown by the combine method in class Delegate to indicate that a delegate type does not support multicasting. To support multicasting, a delegate type must implement the Multicast interface. 
java.lang.RuntimeException
  |
  +--MulticastNotSupportedException
Constructors
public MulticastNotSupportedException();
public MulticastNotSupportedException(String strInfo);