blob: 22a9669918c98ee856020b5fdfe38af6cb11f1e9 [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present 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'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent;
Brian O'Connorb876bf12014-10-02 14:59:37 -070017
Brian O'Connor9476fa12015-06-25 15:17:17 -040018import com.google.common.annotations.Beta;
19
Brian O'Connorb876bf12014-10-02 14:59:37 -070020/**
21 * Represents an intent related error.
22 */
Brian O'Connor9476fa12015-06-25 15:17:17 -040023@Beta
Brian O'Connorb876bf12014-10-02 14:59:37 -070024public class IntentException extends RuntimeException {
25
26 private static final long serialVersionUID = 1907263634145241319L;
27
28 /**
29 * Constructs an exception with no message and no underlying cause.
30 */
31 public IntentException() {
32 }
33
34 /**
35 * Constructs an exception with the specified message.
36 *
37 * @param message the message describing the specific nature of the error
38 */
39 public IntentException(String message) {
40 super(message);
41 }
42
43 /**
44 * Constructs an exception with the specified message and the underlying cause.
45 *
46 * @param message the message describing the specific nature of the error
toma1d16b62014-10-02 23:45:11 -070047 * @param cause the underlying cause of this error
Brian O'Connorb876bf12014-10-02 14:59:37 -070048 */
49 public IntentException(String message, Throwable cause) {
50 super(message, cause);
51 }
52
53}