blob: e71ac10fa6931877eaa4f73f83de17cbeaa06a57 [file] [log] [blame]
Madan Jampania9e70a62016-03-02 16:28:18 -08001/*
2 * Copyright 2016 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.onosproject.store.cluster.messaging;
17
18import java.io.IOException;
19
20/**
21 * Top level exception for MessagingService failures.
22 */
23@SuppressWarnings("serial")
24public class MessagingException extends IOException {
25
26 public MessagingException() {
27 }
28
29 public MessagingException(String message) {
30 super(message);
31 }
32
33 public MessagingException(String message, Throwable t) {
34 super(message, t);
35 }
36
37 public MessagingException(Throwable t) {
38 super(t);
39 }
40
41 /**
42 * Exception indicating no remote registered remote handler.
43 */
44 public static class NoRemoteHandler extends MessagingException {
45 }
46
47 /**
48 * Exception indicating handler failure.
49 */
50 public static class RemoteHandlerFailure extends MessagingException {
51 }
52}