4fa2f93e849bdbf0b9d98ab49f9a704e3e42f17e
[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 public class TechnicalException extends RuntimeException {
11
12     /**
13      * serial id.
14      */
15     private static final long serialVersionUID = 1359762809539335449L;
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 }