Adding nemo engine.
[nemo.git] / nemo-impl / src / main / java / org / opendaylight / nemo / intent / IntentResolutionException.java
1 /*\r
2  * Copyright (c) 2015 Huawei, Inc. and others. All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 \r
9 package org.opendaylight.nemo.intent;\r
10 \r
11 /**\r
12  * An exception in resolving the user intent.\r
13  *\r
14  * @author Zhigang Ji\r
15  */\r
16 public class IntentResolutionException extends Exception {\r
17     private static final long serialVersionUID = -6843701204012305270L;\r
18 \r
19     public IntentResolutionException() {\r
20         super();\r
21 \r
22         return;\r
23     }\r
24 \r
25     public IntentResolutionException(String message) {\r
26         super(message);\r
27 \r
28         return;\r
29     }\r
30 \r
31     public IntentResolutionException(Throwable cause) {\r
32         super(cause);\r
33 \r
34         return;\r
35     }\r
36 \r
37     public IntentResolutionException(String message, Throwable cause) {\r
38         super(message, cause);\r
39 \r
40         return;\r
41     }\r
42 \r
43     public IntentResolutionException(String message, Throwable cause,\r
44                                      boolean enableSuppression,\r
45                                      boolean writableStackTrace) {\r
46         super(message, cause, enableSuppression, writableStackTrace);\r
47 \r
48         return;\r
49     }\r
50 }\r