Bug-2064: Implementation of RFC5492 Error handling.
[bgpcep.git] / bgp / parser-api / src / main / java / org / opendaylight / protocol / bgp / parser / BGPError.java
index 91ccca550fb3f72da3219d0d282aeb921b0a8d90..ed7de231cc7163920d48f434eb57122b1b7d70fc 100644 (file)
@@ -137,7 +137,11 @@ public enum BGPError {
     /**
      * Out of Resources. 6/8
      */
-    OUT_OF_RESOURCES((short) 6, (short) 8);
+    OUT_OF_RESOURCES((short) 6, (short) 8),
+    /**
+     * Unsupported Capability 2/7
+     */
+    UNSUPPORTED_CAPABILITY((short) 2, (short) 7);
 
     private static final Map<BGPErrorIdentifier, BGPError> VALUE_MAP;