Refactor PCE network analyzer PceOtnNode step 2
[transportpce.git] / pce / src / main / java / org / opendaylight / transportpce / pce / gnpy / GnpyException.java
1 /*
2  * Copyright © 2020 Orange, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.transportpce.pce.gnpy;
10
11 /**
12  * Class to create exception to manage missing data for GNPy.
13  *
14  * @author Ahmed Triki ( ahmed.triki@orange.com )
15  *
16  */
17
18 @SuppressWarnings("serial")
19 public class GnpyException extends Exception {
20
21     public GnpyException(String message) {
22         super(message);
23     }
24
25     public GnpyException(String message, Throwable cause) {
26         super(message, cause);
27     }
28 }