summaryrefslogtreecommitdiffstats
path: root/src/rpc-server/include/trex_rpc_exception_api.h
diff options
context:
space:
mode:
authorimarom <imarom@cisco.com>2015-08-24 15:25:19 +0300
committerimarom <imarom@cisco.com>2015-08-24 15:25:19 +0300
commit5089a9b557fb3c0198a774f14cff53947a432398 (patch)
tree9ad07f83336f449f65e17a2fe43bca8b1e0a6166 /src/rpc-server/include/trex_rpc_exception_api.h
parent3bfe53394f43a37ce02b09c6420751027c602047 (diff)
parsing enhancment
Diffstat (limited to 'src/rpc-server/include/trex_rpc_exception_api.h')
-rw-r--r--src/rpc-server/include/trex_rpc_exception_api.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rpc-server/include/trex_rpc_exception_api.h b/src/rpc-server/include/trex_rpc_exception_api.h
index 8783c219..e349b980 100644
--- a/src/rpc-server/include/trex_rpc_exception_api.h
+++ b/src/rpc-server/include/trex_rpc_exception_api.h
@@ -32,6 +32,9 @@ limitations under the License.
class TrexRpcException : public std::runtime_error
{
public:
+ TrexRpcException() : std::runtime_error("") {
+
+ }
TrexRpcException(const std::string &what) : std::runtime_error(what) {
}
};