Migrate RpcService usage in TapiNetworkUtilsImpl
[transportpce.git] / lighty / src / main / java / io / lighty / controllers / tpce / exception / TechnicalException.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 package io.lighty.controllers.tpce.exception;
9
10 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
11
12 @SuppressFBWarnings(
13     value = "SE_NO_SERIALVERSIONID",
14     justification = "https://github.com/rzwitserloot/lombok/wiki/WHY-NOT:-serialVersionUID")
15 public class TechnicalException extends RuntimeException {
16
17     /**
18      * Default constructor.
19      */
20     public TechnicalException() {
21         super();
22     }
23
24     /**
25      * Constructor with message.
26      * @param message error message
27      * @param cause root cause
28      */
29     public TechnicalException(String message, Throwable cause) {
30         super(message, cause);
31     }
32 }