summaryrefslogtreecommitdiff
path: root/CIAO/tools/Config_Handlers/Utils/Exceptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/tools/Config_Handlers/Utils/Exceptions.h')
-rw-r--r--CIAO/tools/Config_Handlers/Utils/Exceptions.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/CIAO/tools/Config_Handlers/Utils/Exceptions.h b/CIAO/tools/Config_Handlers/Utils/Exceptions.h
deleted file mode 100644
index dadb7ed615d..00000000000
--- a/CIAO/tools/Config_Handlers/Utils/Exceptions.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// $Id$
-/**
- * @file Exceptions.h
- * @author William Otte <wotte@dre.vanderbilt.edu>
- *
- * Defines exceptions that may be thrown during the XSC<=>IDL translation process.
- */
-#include <string>
-
-namespace CIAO
-{
- namespace Config_Handlers
- {
- struct Parse_Error
- {
- Parse_Error (const std::string &reason)
- : reason_ (reason)
- {
- }
-
- std::string reason_;
- };
-
- struct Plan_Error
- {
- Plan_Error (const std::string &reason)
- : reason_ (reason)
- {
- }
-
- std::string reason_;
- };
-
- }
-}
-
-
-
-