blob: 02ea227a95611b363c151f1aa85297574344a995 [file] [log] [blame]
Thomas Vachuska24c849c2014-10-27 09:53:05 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
Thomas Vachuska24c849c2014-10-27 09:53:05 -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 Vachuska24c849c2014-10-27 09:53:05 -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 Vachuska24c849c2014-10-27 09:53:05 -070015 */
tom0eb04ca2014-08-25 14:34:51 -070016package org.onlab.osgi;
17
18/**
19 * Represents condition where some service is not found or not available.
20 */
21public class ServiceNotFoundException extends RuntimeException {
22
23 /**
24 * Creates a new exception with no message.
25 */
26 public ServiceNotFoundException() {
27 }
28
29 /**
30 * Creates a new exception with the supplied message.
31 * @param message error message
32 */
33 public ServiceNotFoundException(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 ServiceNotFoundException(String message, Throwable cause) {
43 super(message, cause);
44 }
45
46}