Skip to content

Commit abba080

Browse files
committed
network_interface: add Bridge_does_not_exist error
Signed-off-by: Rob Hoes <[email protected]>
1 parent 6ad10a0 commit abba080

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

network/network_interface.ml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ type errors =
222222
| Vlan_in_use of (string * int) (** [Vlan_in_use (bridge, vlan_id)] is reported when [vlan_id] on [bridge] is inuse *)
223223
| PVS_proxy_connection_error (** [PVS_proxy_connection_error] is reported when unable to connect PVS proxy *)
224224
| Interface_does_not_exist of string (** The named network interface does not exist *)
225+
| Bridge_does_not_exist of string (** The named bridge does not exist *)
225226
| Internal_error of string
226227
| Unknown_error (** The default variant for forward compatibility. *)
227228
[@@default Unknown_error]

0 commit comments

Comments
 (0)