es.tid.bgp.bgp4.update.MalformedBGP4ElementException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of network-protocols Show documentation
Show all versions of network-protocols Show documentation
BGP-LS,OSPF-TE,PCEP and RSVP-TE protocol encodings.
The newest version!
package es.tid.bgp.bgp4.update;
public class MalformedBGP4ElementException extends RuntimeException
{
private final static long serialVersionUID = 1L;
public MalformedBGP4ElementException(){ super(); }
public MalformedBGP4ElementException(String message)
{
super(message);
}
}