[asterisk-scf-commits] asterisk-scf/release/slice.git branch "master" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Mon Jan 3 19:43:37 UTC 2011
branch "master" has been updated
via b2c1ccb92363ec8e99d295843b6529efd73e0a03 (commit)
from aaac63aad229bd0ef45fb03a9b62ad453a717ea8 (commit)
Summary of changes:
System/CMakeLists.txt | 2 +
System/{Time/TimeIf.ice => ExceptionsIf.ice} | 38 ++++++-------------------
2 files changed, 11 insertions(+), 29 deletions(-)
copy System/{Time/TimeIf.ice => ExceptionsIf.ice} (55%)
- Log -----------------------------------------------------------------
commit b2c1ccb92363ec8e99d295843b6529efd73e0a03
Author: Brent Eagles <beagles at digium.com>
Date: Mon Jan 3 16:10:51 2011 -0330
Adding a Slice file for system-wide exceptions and add slice file to
CMakeLists.txt
diff --git a/System/CMakeLists.txt b/System/CMakeLists.txt
index 705b63a..5f01e53 100644
--- a/System/CMakeLists.txt
+++ b/System/CMakeLists.txt
@@ -6,3 +6,5 @@ add_subdirectory(Time)
# Slice definitions for the Logger service
add_subdirectory(Logger)
+
+asterisk_scf_compile_slice(ExceptionsIf.ice lib "System-wide Exceptions" System)
diff --git a/System/ExceptionsIf.ice b/System/ExceptionsIf.ice
new file mode 100644
index 0000000..fc57441
--- /dev/null
+++ b/System/ExceptionsIf.ice
@@ -0,0 +1,38 @@
+/*
+ * Asterisk SCF -- An open-source communications framework.
+ *
+ * Copyright (C) 2010, Digium, Inc.
+ *
+ * See http://www.asterisk.org for more information about
+ * the Asterisk SCF project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2. See the LICENSE.txt file
+ * at the top of the source tree.
+ */
+
+#pragma once
+
+module AsteriskSCF
+{
+
+module System
+{
+
+module V1
+{
+ /**
+ * Exception thrown when a "null" proxy is passed in where it is invalid to do so.
+ **/
+ exception NullProxyException
+ {
+ };
+
+}; /* End of V1 */
+
+}; /* End of System */
+
+}; /* End of AsteriskSCF */
-----------------------------------------------------------------------
--
asterisk-scf/release/slice.git
More information about the asterisk-scf-commits
mailing list