Coverage Summary for Class: UnsupportedCredentialsException (com.acciente.oacc)

Class Class, % Method, % Line, %
UnsupportedCredentialsException 100% (1/ 1) 25% (1/ 4) 25% (2/ 8)


1 /* 2  * Copyright 2009-2017, Acciente LLC 3  * 4  * Acciente LLC licenses this file to you under the 5  * Apache License, Version 2.0 (the "License"); you 6  * may not use this file except in compliance with the 7  * License. You may obtain a copy of the License at 8  * 9  * http://www.apache.org/licenses/LICENSE-2.0 10  * 11  * Unless required by applicable law or agreed to in 12  * writing, software distributed under the License is 13  * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES 14  * OR CONDITIONS OF ANY KIND, either express or implied. 15  * See the License for the specific language governing 16  * permissions and limitations under the License. 17  */ 18 package com.acciente.oacc; 19  20 public class UnsupportedCredentialsException extends InvalidCredentialsException { 21  private static final long serialVersionUID = 1L; 22  23  public UnsupportedCredentialsException(String message) { 24  super(message); 25  } 26  27  public UnsupportedCredentialsException(String message, Throwable cause) { 28  super(message, cause); 29  } 30  31  public UnsupportedCredentialsException(Throwable cause) { 32  super(cause); 33  } 34  35  public UnsupportedCredentialsException(Class unsupportedCredentialsClass) { 36  super("Unsupported credentials implementation: " + unsupportedCredentialsClass); 37  } 38 }