blob: fe484d479dfe05f798efac2659a71da9289f5619 [file] [log] [blame]
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -08001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
4 * 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
7 *
8 * 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.
15 */
16package org.onlab.api;
17
18/**
19 * Represents condition where an item is not found or not available.
20 */
21public class ItemNotFoundException extends RuntimeException {
22
23 /**
24 * Creates a new exception with no message.
25 */
26 public ItemNotFoundException() {
27 }
28
29 /**
30 * Creates a new exception with the supplied message.
31 * @param message error message
32 */
33 public ItemNotFoundException(String message) {
34 super(message);
35 }
36
37 /**
38 * Creates a new exception with the supplied message and cause.
39 * @param message error message
40 * @param cause cause of the error
41 */
42 public ItemNotFoundException(String message, Throwable cause) {
43 super(message, cause);
44 }
45
46}