summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/Plan_Launcher/Deployment_Failure.h
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/DAnCE/Plan_Launcher/Deployment_Failure.h')
-rw-r--r--CIAO/DAnCE/Plan_Launcher/Deployment_Failure.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/CIAO/DAnCE/Plan_Launcher/Deployment_Failure.h b/CIAO/DAnCE/Plan_Launcher/Deployment_Failure.h
deleted file mode 100644
index bc073921794..00000000000
--- a/CIAO/DAnCE/Plan_Launcher/Deployment_Failure.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/**
- * @file Deployment_Failure.h
- * @author William R. Otte <wotte@dre.vanderbilt.edu>
- *
- * $Id$
- *
- * Defines exceptions used internally to the Plan Launcher
- */
-
-#ifndef DANCE_DEPLOYMENT_FAILURE
-#define DANCE_DEPLOYMENT_FAILURE
-
-#include "ace/SString.h"
-
-namespace DAnCE
-{
- struct Deployment_Failure
- {
- Deployment_Failure (const ACE_CString &ex) : ex_ (ex) {}
-
- ACE_CString ex_;
- };
-}
-
-#endif