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

Class Class, % Method, % Line, %
AuthorizationException 100% (1/ 1) 33.3% (1/ 3) 33.3% (2/ 6)


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 AuthorizationException extends OaccException { 21  private static final long serialVersionUID = 1L; 22  23  public AuthorizationException(String message) { 24  super(message); 25  } 26  27  public AuthorizationException(String message, Throwable cause) { 28  super(message, cause); 29  } 30  31  public AuthorizationException(Throwable cause) { 32  super(cause); 33  } 34 }