CDS: Add stress test RPC to the cars model
[controller.git] / opendaylight / netconf / tools / netconf-cli / src / main / java / org / opendaylight / controller / netconf / cli / commands / CommandInvocationException.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.netconf.cli.commands;
9
10 import org.opendaylight.yangtools.yang.common.QName;
11
12 public class CommandInvocationException extends Exception {
13
14     public CommandInvocationException(final QName qName, final Throwable cause) {
15         this("Command " + qName + " invocation failed: " + cause.getMessage(), cause);
16     }
17
18     protected CommandInvocationException(final String message, final Throwable cause) {
19         super(message, cause);
20     }
21
22     public static class CommandTimeoutException extends CommandInvocationException {
23
24         public CommandTimeoutException(final QName qName, final Throwable e) {
25             super("Command " + qName + " timed out: " + e.getMessage(), e);
26         }
27     }
28 }