summaryrefslogtreecommitdiff
path: root/DAnCE/dance/Plan_Launcher/Deployment_Failure.h
diff options
context:
space:
mode:
Diffstat (limited to 'DAnCE/dance/Plan_Launcher/Deployment_Failure.h')
-rw-r--r--DAnCE/dance/Plan_Launcher/Deployment_Failure.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/DAnCE/dance/Plan_Launcher/Deployment_Failure.h b/DAnCE/dance/Plan_Launcher/Deployment_Failure.h
deleted file mode 100644
index d7fe4804c75..00000000000
--- a/DAnCE/dance/Plan_Launcher/Deployment_Failure.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- * @file Deployment_Failure.h
- * @author William R. Otte <wotte@dre.vanderbilt.edu>
- *
- * 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