Commit d034deb8 authored by Joseph Noir's avatar Joseph Noir

Add error for unavailable transport protocol

parent b7e99c51
...@@ -91,7 +91,9 @@ enum class sec : uint8_t { ...@@ -91,7 +91,9 @@ enum class sec : uint8_t {
/// Linking to a remote actor failed because actor no longer exists. /// Linking to a remote actor failed because actor no longer exists.
remote_linking_failed, remote_linking_failed,
/// A function view was called without assigning an actor first. /// A function view was called without assigning an actor first.
bad_function_call bad_function_call,
/// The scheme for network communication does not match a transport protocol
unsupported_protocol
}; };
/// @relates sec /// @relates sec
......
...@@ -56,7 +56,8 @@ const char* sec_strings[] = { ...@@ -56,7 +56,8 @@ const char* sec_strings[] = {
"no_proxy_registry", "no_proxy_registry",
"runtime_error", "runtime_error",
"remote_linking_failed", "remote_linking_failed",
"bad_function_call" "bad_function_call",
"unsupported_protocol"
}; };
} // namespace <anonymous> } // namespace <anonymous>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment