summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/Plan_Launcher/Deployment_Failure.h
blob: bc0739217941468405fc83d6850cfdc938aa0b69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * @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