Bump Checkstyle from 6.16 to 7.6.1
[odlparent.git] / bundles4-test / src / main / java / org / opendaylight / odlparent / bundles4test / SystemStateFailureException.java
1 /*
2  * Copyright (c) 2017 Red Hat, 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 org.opendaylight.odlparent.bundles4test;
9
10 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
11 import org.opendaylight.odlparent.bundlestest.lib.BundleDiagInfos;
12
13 @Deprecated
14 @SuppressFBWarnings("NM_SAME_SIMPLE_NAME_AS_SUPERCLASS")
15 public class SystemStateFailureException
16         extends org.opendaylight.odlparent.bundlestest.lib.SystemStateFailureException {
17
18     // TODO remove along with @Deprecated TestBundleDiag
19
20     private static final long serialVersionUID = 1L;
21
22     public SystemStateFailureException(String message, BundleDiagInfos bundleDiagInfos) {
23         super(message, bundleDiagInfos);
24     }
25
26     public SystemStateFailureException(String message, BundleDiagInfos bundleDiagInfos, Throwable cause) {
27         super(message, bundleDiagInfos, cause);
28     }
29
30 }