Back to home page

OSCL-LXR

 
 

    


0001 /**
0002  * Licensed under the Apache License, Version 2.0 (the "License");
0003  * you may not use this file except in compliance with the License.
0004  * You may obtain a copy of the License at
0005  *
0006  *   http://www.apache.org/licenses/LICENSE-2.0
0007  *
0008  * Unless required by applicable law or agreed to in writing, software
0009  * distributed under the License is distributed on an "AS IS" BASIS,
0010  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0011  * See the License for the specific language governing permissions and
0012  * limitations under the License. See accompanying LICENSE file.
0013  */
0014 
0015 package org.apache.hive.service.auth;
0016 
0017 public class HttpAuthenticationException extends Exception {
0018 
0019   private static final long serialVersionUID = 0;
0020 
0021   /**
0022    * @param cause original exception
0023    */
0024   public HttpAuthenticationException(Throwable cause) {
0025     super(cause);
0026   }
0027 
0028   /**
0029    * @param msg exception message
0030    */
0031   public HttpAuthenticationException(String msg) {
0032     super(msg);
0033   }
0034 
0035   /**
0036    * @param msg   exception message
0037    * @param cause original exception
0038    */
0039   public HttpAuthenticationException(String msg, Throwable cause) {
0040     super(msg, cause);
0041   }
0042 
0043 }