do not explicit serialVersionUID anymore
[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 @edu.umd.cs.findbugs.annotations.SuppressFBWarnings(
11     value = "SE_NO_SERIALVERSIONID",
12     justification = "https://github.com/rzwitserloot/lombok/wiki/WHY-NOT:-serialVersionUID")
13 public class TechnicalException extends RuntimeException {
14
15     /**
16      * Default constructor.
17      */
18     public TechnicalException() {
19         super();
20     }
21
22     /**
23      * Constructor with message.
24      * @param message error message
25      * @param cause root cause
26      */
27     public TechnicalException(String message, Throwable cause) {
28         super(message, cause);
29     }
30 }