blob: d087e6329f94b3d04d675bb365158ad58be93be0 [file] [log] [blame]
Ray Milkey9f87e512016-01-05 10:00:22 -08001/*
2 * Copyright 2016 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onlab.util;
17
18/**
19 * Constants to use to suppress SonarQube errors.
20 */
21public final class SonarSuppressionConstants {
22
23 public static final String SONAR_PRINT_STACK_TRACE = "squid:S1148";
24 public static final String SONAR_SWITCH_FALLTHROUGH = "squid:S128";
25 public static final String SONAR_CATCH_THROWABLE = "squid:S1181";
26 public static final String SONAR_CALL_RUN = "squid:S1217";
27
28 /*
29 * Prohibit construction.
30 */
31 private SonarSuppressionConstants() {
32
33 }
34}