Commit 450a1b0d authored by CeRiAl's avatar CeRiAl

Handle APP_MSG_INVALID_STATE

parent 8a824f0b
...@@ -64,6 +64,9 @@ char* translate_app_message_result(AppMessageResult app_message_error) { ...@@ -64,6 +64,9 @@ char* translate_app_message_result(AppMessageResult app_message_error) {
case APP_MSG_APP_NOT_RUNNING: case APP_MSG_APP_NOT_RUNNING:
msg = "The local application was not running."; msg = "The local application was not running.";
break; break;
case APP_MSG_INVALID_STATE:
msg = "The function was called with invalid state.";
break;
case APP_MSG_INVALID_ARGS: case APP_MSG_INVALID_ARGS:
msg = "The function was called with invalid arguments."; msg = "The function was called with invalid arguments.";
break; break;
......
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