blob: cd7973b89cf3e7960cdfbf45d21d490930c8335c [file] [log] [blame]
Pier Luigi Ventre0a023f42016-04-30 11:03:15 +02001/*
2 * Copyright 2016-present 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 */
16
17package org.onosproject.sdxl2;
18
19/**
pierventre3849e562016-05-11 11:47:32 +020020 * SDX-L2 error Exception.
Pier Luigi Ventre0a023f42016-04-30 11:03:15 +020021 */
22public class SdxL2Exception extends Exception {
23
Carolina Fernandezad893432016-07-18 11:11:34 +020024 /**
25 * Returns a custom exception, given a message.
26 *
27 * @param message Exception with custom message
28 */
Pier Luigi Ventre0a023f42016-04-30 11:03:15 +020029 public SdxL2Exception(String message) {
30 super(message);
31 }
32
33}
34
35