aboutsummaryrefslogtreecommitdiffstats
path: root/src/wm-error.h
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-06-04 16:33:07 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-06-04 16:33:48 +0900
commit2340eb6f1c780cd98e77403d2b7f40a1fcc21471 (patch)
tree2860dab6a06cae98770b4dfffdf4674d92be841b /src/wm-error.h
parent358f8b12f6d858473b0bfbd6ed9b191cd94f7b02 (diff)
Add new files manages error message
Change-Id: I255e4a8df74b0b1b766441952a146daffd3fddee Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/wm-error.h')
-rw-r--r--src/wm-error.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/wm-error.h b/src/wm-error.h
new file mode 100644
index 0000000..9a06aa7
--- /dev/null
+++ b/src/wm-error.h
@@ -0,0 +1,36 @@
+/*
+ * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef WINDOW_MANAGER_ERROR
+#define WINDOW_MANAGER_ERROR
+
+namespace wm {
+
+typedef enum WINDOWMANAGER_ERROR
+{
+ SUCCESS = 0,
+ FAIL,
+ REQ_REJECTED,
+ REQ_DROPPED,
+ TIMEOUT_EXPIRED,
+ UNKNOWN,
+ ERR_MAX = UNKNOWN
+} WMError;
+
+static const char *errorDescription(WMError enum_error_number);
+
+}
+#endif // WINDOW_MANAGER_ERROR \ No newline at end of file