blob: 7bdfa1058cdca2893b93438dd0a51fd5e302ecd0 [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 Open Networking Laboratory
Thomas Vachuska83e090e2014-10-22 14:25:35 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
Thomas Vachuska83e090e2014-10-22 14:25:35 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
Thomas Vachuska83e090e2014-10-22 14:25:35 -070015 */
Brian O'Connorb876bf12014-10-02 14:59:37 -070016package org.onlab.onos.net.intent;
17
18/**
19 * Represents an intent related error.
20 */
21public class IntentException extends RuntimeException {
22
23 private static final long serialVersionUID = 1907263634145241319L;
24
25 /**
26 * Constructs an exception with no message and no underlying cause.
27 */
28 public IntentException() {
29 }
30
31 /**
32 * Constructs an exception with the specified message.
33 *
34 * @param message the message describing the specific nature of the error
35 */
36 public IntentException(String message) {
37 super(message);
38 }
39
40 /**
41 * Constructs an exception with the specified message and the underlying cause.
42 *
43 * @param message the message describing the specific nature of the error
toma1d16b62014-10-02 23:45:11 -070044 * @param cause the underlying cause of this error
Brian O'Connorb876bf12014-10-02 14:59:37 -070045 */
46 public IntentException(String message, Throwable cause) {
47 super(message, cause);
48 }
49
50}