X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fonap%2Fdmaap%2Fdbcapi%2Fauthentication%2FAuthenticationErrorException.java;h=01200f7529875a49816b591bbd6bead9f6bb521a;hb=ece3a625175df4d74d890d67f584560630e9ed33;hp=5119c76bffe33d5e40af18602def30f621addaaf;hpb=d07718b9a29bc895a5acce89dd1c5368b5279b98;p=dmaap%2Fdbcapi.git diff --git a/src/main/java/org/onap/dmaap/dbcapi/authentication/AuthenticationErrorException.java b/src/main/java/org/onap/dmaap/dbcapi/authentication/AuthenticationErrorException.java index 5119c76..01200f7 100644 --- a/src/main/java/org/onap/dmaap/dbcapi/authentication/AuthenticationErrorException.java +++ b/src/main/java/org/onap/dmaap/dbcapi/authentication/AuthenticationErrorException.java @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -22,8 +22,14 @@ package org.onap.dmaap.dbcapi.authentication; public class AuthenticationErrorException extends Exception { /** - * + * */ private static final long serialVersionUID = 1L; + public AuthenticationErrorException() { + } + + public AuthenticationErrorException(String s) { + super(s); + } }