blob: ff2d7d577a1adf565045ecd0f0d7928744ec0bcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef DEPLOYMENT_PLANERROR_IDL
#define DEPLOYMENT_PLANERROR_IDL
module Deployment {
exception PlanError {
string name;
string reason;
};
};
#endif /* DEPLOYMENT_PLANERROR_IDL */
|